}
@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;
}