Package org.jboss.security.config

Examples of org.jboss.security.config.RoleMappingInfo


   {
      /**
       * Currently we do not have the name of the application policy
       * This will be rectified in the ApplicationPolicyContainer
       */
      MappingInfo ri = new RoleMappingInfo("dummy");
      ri.add(moduleEntries);
      return ri;
   }
View Full Code Here


/*    */     }
/*    */   }
/*    */
/*    */   public Object instantiate()
/*    */   {
/* 71 */     MappingInfo ri = new RoleMappingInfo("dummy");
/* 72 */     ri.add(this.moduleEntries);
/* 73 */     return ri;
/*    */   }
View Full Code Here

      return ap;
   }
  
   protected RoleMappingInfo createRoleMappingInfo(String domain)
   {
      RoleMappingInfo rmi = new RoleMappingInfo(domain);
      rmi.add(new MappingModuleEntry(this.roleMappingModule));
      return rmi;
   }
View Full Code Here

      return rmi;
   }
  
   protected RoleMappingInfo createRoleMappingInfo(String domain, List<String> moduleNames)
   {
      RoleMappingInfo rmi = new RoleMappingInfo(domain);
      for(String mod:moduleNames)
      {
         rmi.add(new MappingModuleEntry(mod));
      }
      return rmi;
   }
View Full Code Here

TOP

Related Classes of org.jboss.security.config.RoleMappingInfo

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.