Package org.jboss.test.security.sunxacml.conformance.support

Examples of org.jboss.test.security.sunxacml.conformance.support.TestPolicyFinderModule


   }
  
   @SuppressWarnings("unchecked")
   private PolicyFinderModule createTestPolicyFinderModule(int i) throws Exception
   {
      TestPolicyFinderModule tpfm = new ConformanceTestPolicyFinderModule();
     
      String policyRefString = "urn:oasis:names:tc:xacml:1.0:conformance-test:IIE00"+i+":policy1";
      URI policyRef = new URI(policyRefString);
      Map policyRefs = new HashMap();
      policyRefs.put(policyRef.toString(), mandatoryBase + "IIE00" + i + "PolicyId1.xml");
      tpfm.setPolicyRefs(policyRefs, policyRef.toString());
     
      URI policySetRef = new URI("urn:oasis:names:tc:xacml:1.0:conformance-test:IIE00"+i+":policyset1");
      Map policySetRefs = new HashMap();
      policySetRefs.put(policySetRef.toString(), mandatoryBase + "IIE00" + i + "PolicySetId1.xml")
      tpfm.setPolicySetRefs(policySetRefs, policySetRef.toString());
      return tpfm;
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.security.sunxacml.conformance.support.TestPolicyFinderModule

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.