Examples of AuditProviderEntry


Examples of org.jboss.security.audit.config.AuditProviderEntry

            authorizationModuleEntries.add(ameEntry);
         isAuthorization = true;
      }
      else if( value instanceof AuditProviderEntry)
      {
         AuditProviderEntry ameEntry = (AuditProviderEntry)value;
         if(!auditProviderEntries.contains(ameEntry))
            auditProviderEntries.add(ameEntry);
         containsAudit = true;
      }
      else if( value instanceof IdentityTrustModuleEntry )
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

/* 244 */       log.trace("newChild.AuditInfo, localName: " + localName);
/* 245 */     if ("provider-module".equals(localName))
/*     */     {
/* 247 */       String code = attrs.getValue("code");
/* 248 */       code = StringPropertyReplacer.replaceProperties(code.trim());
/* 249 */       AuditProviderEntry entry = new AuditProviderEntry(code);
/* 250 */       child = entry;
/* 251 */       if (this.trace) {
/* 252 */         log.trace("newChild.AuditInfo, provider-module code: " + code);
/*     */       }
/*     */     }
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

/* 139 */         this.authorizationModuleEntries.add(ameEntry);
/* 140 */       this.isAuthorization = true;
/*     */     }
/* 142 */     else if ((value instanceof AuditProviderEntry))
/*     */     {
/* 144 */       AuditProviderEntry ameEntry = (AuditProviderEntry)value;
/* 145 */       if (!this.auditProviderEntries.contains(ameEntry))
/* 146 */         this.auditProviderEntries.add(ameEntry);
/* 147 */       this.containsAudit = true;
/*     */     }
/* 149 */     else if ((value instanceof IdentityTrustModuleEntry))
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

            authorizationModuleEntries.add(ameEntry);
         isAuthorization = true;
      }
      else if (value instanceof AuditProviderEntry)
      {
         AuditProviderEntry ameEntry = (AuditProviderEntry) value;
         if (!auditProviderEntries.contains(ameEntry))
            auditProviderEntries.add(ameEntry);
         containsAudit = true;
      }
      else if (value instanceof IdentityTrustModuleEntry)
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

         log.trace("newChild.AuditInfo, localName: " + localName);
      if ("provider-module".equals(localName))
      {
         String code = attrs.getValue("code");
         code = StringPropertyReplacer.replaceProperties(code.trim());
         AuditProviderEntry entry = new AuditProviderEntry(code);
         child = entry;
         if (trace)
            log.trace("newChild.AuditInfo, provider-module code: " + code);
      }
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

        AuditInfo auditInfo = new AuditInfo(securityDomain);
        List<ModelNode> modules = node.get(PROVIDER_MODULES).asList();
        for (ModelNode module : modules) {
            String codeName = module.require(CODE).asString();
            Map<String, Object> options = extractOptions(module);
            AuditProviderEntry entry = new AuditProviderEntry(codeName, options);
            auditInfo.add(entry);

        }
        applicationPolicy.setAuditInfo(auditInfo);
        return true;
View Full Code Here

Examples of org.jboss.security.audit.config.AuditProviderEntry

        AuditInfo auditInfo = new AuditInfo(securityDomain);
        List<ModelNode> modules = node.get(PROVIDER_MODULES).asList();
        for (ModelNode module : modules) {
            String codeName = module.require(CODE).asString();
            Map<String, Object> options = extractOptions(module);
            AuditProviderEntry entry = new AuditProviderEntry(codeName, options);
            auditInfo.add(entry);

            String moduleName = module.get(MODULE).asString();
            if(module.hasDefined(MODULE) && moduleName != null &&  moduleName.length() > 0 ) {
                auditInfo.setJBossModuleName(moduleName);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.