Package org.jboss.security.audit

Examples of org.jboss.security.audit.AuditContext


/* 101 */     contexts.put(securityDomain, ac);
/*     */   }
/*     */
/*     */   public void audit(AuditEvent ae)
/*     */   {
/* 106 */     AuditContext ac = null;
/*     */     try
/*     */     {
/* 109 */       ac = getAuditContext();
/*     */     }
/*     */     catch (PrivilegedActionException e)
/*     */     {
/* 113 */       throw new RuntimeException(e);
/*     */     }
/* 115 */     ac.audit(ae);
/*     */
/* 117 */     if (ac != defaultContext)
/*     */     {
/* 119 */       defaultContext.audit(ae);
/*     */     }
View Full Code Here

TOP

Related Classes of org.jboss.security.audit.AuditContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.