Uses of Class
org.glite.security.authz.ServiceAuthorizationChain

Packages that use ServiceAuthorizationChain
org.glite.security.authz This package contains the core gLite Authorization Framework providing an abstract policy evaluation runtime for integrating various policy engines with attribute authorities. 
org.glite.security.authz.providers This package contains ServiceAutorizationChain providers for the gLite Authorization Framework, a PermitOverrides provider implements a policy combining algorithm that evaluates all PDPs in turn but stops the evaluation if a PDP returns a successful authorization result. 
 

Uses of ServiceAuthorizationChain in org.glite.security.authz
 

Methods in org.glite.security.authz that return ServiceAuthorizationChain
static ServiceAuthorizationChain ServiceAuthorizationChain.getInstance()
          gets an instance of a chain from a provider implementing the default algorithm.
static ServiceAuthorizationChain ServiceAuthorizationChain.getInstance(java.lang.String algorithm)
          gets an instance of a chain from a provider implementing the specified algorithm.
static ServiceAuthorizationChain ServiceAuthorizationChain.getInstance(java.security.Provider provider)
          gets an instance of a chain from the specified provider implementing the default algorithm.
static ServiceAuthorizationChain ServiceAuthorizationChain.getInstance(java.lang.String algorithm, java.security.Provider provider)
          gets an instance of a chain from the specified provider implementing the specified algorithm.
 

Methods in org.glite.security.authz with parameters of type ServiceAuthorizationChain
 void ServiceAuthorizationChainSpi.engineSetParent(ServiceAuthorizationChain parentChain)
          sets the parent chain, which will be evaluated before the current chain all authorization, get- and setPolicy, and getPolicyNames requests are propagated to the parent, wheras initialize and close are always only done on the local chain.
 void ServiceAuthorizationChain.setParent(ServiceAuthorizationChain parentChain)
          sets the parent chain, which typically will be evaluated before the current chain all authorization, get- and setPolicy, and getPolicyNames requests are propagated to the parent, wheras initialize and close are always only done on the local chain.
 

Uses of ServiceAuthorizationChain in org.glite.security.authz.providers
 

Methods in org.glite.security.authz.providers with parameters of type ServiceAuthorizationChain
 void AbstractChain.engineSetParent(ServiceAuthorizationChain chain)
          sets the parent chain, which will be evaluated before the current chain all authorization, get- and setPolicy, and getPolicyNames requests are propagated to the parent, wheras initialize and close are always only done on the local chain.