Uses of Class
eu.xtreemos.xosd.security.vops.xacml.policy.Policy

Packages that use Policy
eu.xtreemos.xosd.security.vops.xacml   
eu.xtreemos.xosd.security.vops.xacml.policy   
eu.xtreemos.xosd.security.vops.xacml.utils   
 

Uses of Policy in eu.xtreemos.xosd.security.vops.xacml
 

Methods in eu.xtreemos.xosd.security.vops.xacml that return Policy
static Policy PolicyTest.createPolicy()
           
static Policy PolicyTest2.createPolicy()
           
static Policy PolicyTest.createPolicyPrototype()
          This method creates example policies for experimental certificates.
static Policy PolicyTest2.createPolicyPrototype()
          This method creates example policies for experimental certificates.
static Policy PolicyTest.readPolicyFromFile(java.lang.String file)
          Reads XACML policy from file and creates structure of the Policy.
static Policy PolicyTest2.readPolicyFromFile(java.lang.String file)
          Reads XACML policy from file and creates structure of the Policy.
static Policy PolicyTest2.test2()
          Creates empty policy and adds test rule from file.
 

Uses of Policy in eu.xtreemos.xosd.security.vops.xacml.policy
 

Methods in eu.xtreemos.xosd.security.vops.xacml.policy that return Policy
 Policy Policy.parsePolicy(java.lang.String xmlPolicy)
          Parses xml document and returns Policy.
 

Uses of Policy in eu.xtreemos.xosd.security.vops.xacml.utils
 

Fields in eu.xtreemos.xosd.security.vops.xacml.utils with type parameters of type Policy
private static java.util.ArrayList<Policy> PolicyFactory.policyStorage
          This storage holds all policies in memory.
 

Methods in eu.xtreemos.xosd.security.vops.xacml.utils that return Policy
static Policy PolicyFactory.createEmptyPolicy(java.net.URI policyId, java.lang.String policyDescription)
          Creates empty policy with policy id and policy description.
static Policy PolicyFactory.getFilteredPolicy(com.sun.xacml.ctx.RequestCtx request)
          Filters policies based on the provided XACML request.
static Policy PolicyFactory.getFilteredPolicy(java.security.cert.X509Certificate cert)
          Deprecated.  
static Policy PolicyFactory.getFilteredPolicyTarget(com.sun.xacml.ctx.RequestCtx request)
           
static Policy PolicyFactory.getPolicy(java.lang.String policyId)
          Returns policy from policy storage with specified policyId.
static Policy PolicyFactory.listPolicy(java.lang.String policyId)
          Returns policy as String
static Policy PolicyFactory.storageContainsOverlappingPolicy(PolicyTarget pt)
          Checks whether storage contains overlapping policy.
 

Methods in eu.xtreemos.xosd.security.vops.xacml.utils that return types with arguments of type Policy
static java.util.ArrayList<Policy> PolicyFactory.listPolicies()
          Lists all policies in policy storage.
 

Methods in eu.xtreemos.xosd.security.vops.xacml.utils with parameters of type Policy
static java.lang.Boolean PolicyFactory.addPolicy(Policy policyToAdd)
          Adds policy into policy storage.
static void PolicyFactory.addRuleToPolicy(java.lang.String pathToForm, Policy policy)
          Deprecated.  
static boolean PolicyFactory.isOverlappingPolicyTargetSubject(Policy policy, PolicyTarget target)
          Checks wheter there already exists policy which has the same target as target passed as parameter.