Codota Logo
AuditProvider
Code IndexAdd Codota to your IDE (free)

How to use
AuditProvider
in
org.jboss.security.audit

Best Java code snippets using org.jboss.security.audit.AuditProvider (Showing top 4 results out of 315)

  • Common ways to obtain AuditProvider
private void myMethod () {
AuditProvider a =
  • Codota IconAuditContext auditContext;(AuditProvider) auditContext.providerList.get(location)
  • Smart code suggestions by Codota
}
origin: org.picketbox/picketbox

public void audit(AuditEvent ae)
{
 int len = this.providerList.size();
 
 for(int i = 0; i < len; i++)
 {
   AuditProvider ap = (AuditProvider)this.providerList.get(i);
   ap.audit(ae);
 } 
}

origin: org.picketbox/picketbox-spi-bare

public void audit(AuditEvent ae)
{
 int len = this.providerList.size();
 
 for(int i = 0; i < len; i++)
 {
   AuditProvider ap = (AuditProvider)this.providerList.get(i);
   ap.audit(ae);
 } 
}

origin: org.picketbox/jboss-security-spi

public void audit(AuditEvent ae)
{
 int len = this.providerList.size();
 
 for(int i = 0; i < len; i++)
 {
   AuditProvider ap = (AuditProvider)this.providerList.get(i);
   ap.audit(ae);
 } 
}

origin: jboss/jboss-security-spi

public void audit(AuditEvent ae)
{
 int len = this.providerList.size();
 
 for(int i = 0; i < len; i++)
 {
   AuditProvider ap = (AuditProvider)this.providerList.get(i);
   ap.audit(ae);
 } 
}

org.jboss.security.auditAuditProvider

Javadoc

Audit Provider that can log audit events to an external sink

Most used methods

  • audit
    Perform an audit of the event passed A provider can log the audit as per needs.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now