mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-4106 (ALF-4103): AuditService REST API
- Full start/stop/status using WebScripts - AuditService API additions to support - .ftl to generate json response - Some javadoc and debug additions git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21802 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -48,7 +48,8 @@ import org.apache.commons.logging.LogFactory;
|
||||
import org.springframework.extensions.surf.util.ParameterCheck;
|
||||
|
||||
/**
|
||||
* The default audit component implementation. TODO: Implement before, after and exception filtering. At the moment
|
||||
* The default audit component implementation.
|
||||
* <TODO: Implement before, after and exception filtering. At the moment
|
||||
* these filters are ignored. TODO: Respect audit internal - at the moment audit internal is fixed to false.
|
||||
* <p/>
|
||||
* The V3.2 audit functionality is contained within the same component. When the newer audit
|
||||
@@ -190,10 +191,9 @@ public class AuditComponentImpl implements AuditComponent
|
||||
* {@inheritDoc}
|
||||
* @since 3.4
|
||||
*/
|
||||
public Set<String> getAuditApplications()
|
||||
public Map<String, AuditApplication> getAuditApplications()
|
||||
{
|
||||
Map<String, AuditApplication> auditApps = auditModelRegistry.getAuditApplications();
|
||||
return auditApps.keySet();
|
||||
return auditModelRegistry.getAuditApplications();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user