Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.sun.xacml.cond.FunctionFactory

Uses of FunctionFactory in com.sun.xacml.cond
 

Subclasses of FunctionFactory in com.sun.xacml.cond
 class BaseFunctionFactory
          This is a basic implementation of FunctionFactory.
 class StandardFunctionFactory
          This factory supports the standard set of functions specified in XACML 1.0 and 1.1.
 

Fields in com.sun.xacml.cond declared as FunctionFactory
private  FunctionFactory BasicFunctionFactoryProxy.targetFactory
           
private  FunctionFactory BasicFunctionFactoryProxy.conditionFactory
           
private  FunctionFactory BasicFunctionFactoryProxy.generalFactory
           
private  FunctionFactory BaseFunctionFactory.superset
           
 

Methods in com.sun.xacml.cond that return FunctionFactory
 FunctionFactory FunctionFactoryProxy.getTargetFactory()
          Returns the Target version of an instance of the FunctionFactory for which this is a proxy.
 FunctionFactory FunctionFactoryProxy.getConditionFactory()
          Returns the Condition version of an instance of the FunctionFactory for which this is a proxy.
 FunctionFactory FunctionFactoryProxy.getGeneralFactory()
          Returns the General version of an instance of the FunctionFactory for which this is a proxy.
static FunctionFactory FunctionFactory.getTargetInstance()
          Returns the default FunctionFactory that will only provide those functions that are usable in Target matching.
static FunctionFactory FunctionFactory.getConditionInstance()
          Returns the default FuntionFactory that will only provide those functions that are usable in the root of the Condition.
static FunctionFactory FunctionFactory.getGeneralInstance()
          Returns the default FunctionFactory that provides access to all the functions.
 FunctionFactory BasicFunctionFactoryProxy.getTargetFactory()
           
 FunctionFactory BasicFunctionFactoryProxy.getConditionFactory()
           
 FunctionFactory BasicFunctionFactoryProxy.getGeneralFactory()
           
 

Methods in com.sun.xacml.cond with parameters of type FunctionFactory
private static Apply Apply.getInstance(org.w3c.dom.Node root, FunctionFactory factory, boolean isCondition, java.lang.String xpathVersion)
          This is a helper method that is called by the two getInstance methods.
private static Function Apply.getFunction(org.w3c.dom.Node root, java.lang.String version, FunctionFactory factory)
          Helper method that tries to get a function instance
 

Constructors in com.sun.xacml.cond with parameters of type FunctionFactory
BasicFunctionFactoryProxy(FunctionFactory targetFactory, FunctionFactory conditionFactory, FunctionFactory generalFactory)
          Creates a new proxy.
BaseFunctionFactory(FunctionFactory superset)
          Constructor that sets a "superset factory".
BaseFunctionFactory(FunctionFactory superset, java.util.Set supportedFunctions, java.util.Map supportedAbstractFunctions)
          Constructor that defines the initial functions supported by this factory and uses a superset factory.