mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Reverse-merged 21489: @override tags
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21499 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -616,6 +616,7 @@ public class AuditComponentTest extends TestCase
|
||||
{
|
||||
RunAsWork<Void> work = new RunAsWork<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void doWork() throws Exception
|
||||
{
|
||||
auditService.clearAudit(applicationName);
|
||||
@@ -632,6 +633,7 @@ public class AuditComponentTest extends TestCase
|
||||
{
|
||||
RunAsWork<Void> work = new RunAsWork<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void doWork() throws Exception
|
||||
{
|
||||
auditService.auditQuery(callback, parameters, maxResults);
|
||||
|
@@ -47,6 +47,7 @@ public class AuditServiceImpl implements AuditService
|
||||
* {@inheritDoc}
|
||||
* @since 3.4
|
||||
*/
|
||||
@Override
|
||||
public Set<String> getAuditApplications()
|
||||
{
|
||||
return auditComponent.getAuditApplications();
|
||||
|
@@ -164,6 +164,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public Map<String, AuditApplication> getAuditApplications()
|
||||
{
|
||||
return getState(true).getAuditApplications();
|
||||
@@ -172,6 +173,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public AuditApplication getAuditApplicationByKey(String key)
|
||||
{
|
||||
return getState(true).getAuditApplicationByKey(key);
|
||||
@@ -180,6 +182,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public AuditApplication getAuditApplicationByName(String applicationName)
|
||||
{
|
||||
return getState(true).getAuditApplicationByName(applicationName);
|
||||
@@ -188,6 +191,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public PathMapper getAuditPathMapper()
|
||||
{
|
||||
return getState(true).getAuditPathMapper();
|
||||
@@ -196,6 +200,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void loadAuditModels()
|
||||
{
|
||||
stop();
|
||||
@@ -205,6 +210,7 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public boolean isAuditEnabled()
|
||||
{
|
||||
String value = getProperty(PROPERTY_AUDIT_ENABLED);
|
||||
|
Reference in New Issue
Block a user