
com.daedafusion.security.audit.impl.AuditImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.audit.impl;
import com.daedafusion.sf.AbstractService;
import com.daedafusion.security.audit.Audit;
import com.daedafusion.security.audit.AuditEvent;
import com.daedafusion.security.audit.providers.AuditProvider;
import org.apache.log4j.Logger;
/**
* Created by mphilpot on 8/12/14.
*/
public class AuditImpl extends AbstractService implements Audit
{
private static final Logger log = Logger.getLogger(AuditImpl.class);
@Override
public void reportEvent(AuditEvent event)
{
for(AuditProvider ap : getProviders())
{
reportEvent(event);
}
}
@Override
public Class getProviderInterface()
{
return AuditProvider.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy