Uses of Interface
org.glite.security.authz.ChainConfig

Packages that use ChainConfig
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.pdp This package contains Policy Decision Point (PDP) plugins for the gLite Authorization Framework, a BlackList PDP compares authenticated users against a blacklist that can be updated at runtime, a GridMap PDP checks if the authenticated user has a mapping in a gridmap file. 
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 ChainConfig in org.glite.security.authz
 

Classes in org.glite.security.authz that implement ChainConfig
 class SimpleChainConfig
          Simple ChainConfig implementation allowing configuration properties to be set at runtime.
 

Methods in org.glite.security.authz with parameters of type ChainConfig
 void SimpleServicePIP.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 void SimpleServicePDP.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 void ServiceAuthorizationChainSpi.engineInitialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the chain with a given configuration of PIPs and PDPs.
 void ServiceAuthorizationChain.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the chain with a given configuration of PIPs and PDPs.
 void ServiceInterceptor.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 

Uses of ChainConfig in org.glite.security.authz.pdp
 

Methods in org.glite.security.authz.pdp with parameters of type ChainConfig
 void VomsServicePDP.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 void GridMapServicePDP.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 void BlackListServicePDP.initialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the interceptor with configuration information that are valid up until the point when close is called.
 

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

Methods in org.glite.security.authz.providers with parameters of type ChainConfig
 void AbstractChain.engineInitialize(ChainConfig config, java.lang.String name, java.lang.String id)
          initializes the chain with a given configuration of PIPs and PDPs.