Package | Description |
---|---|
org.jboss.security.xacml.sunxacml |
This is the root package, which contains the PDP class where most
people will want to start.
|
org.jboss.security.xacml.sunxacml.cond |
Support for Conditions is in this package.
|
Modifier and Type | Method and Description |
---|---|
FunctionFactory |
PolicyMetaData.getConditionFunctionFactory()
Returns the Condition
FunctionFactory used by the
associated policy. |
FunctionFactory |
PolicyMetaData.getGeneralFunctionFactory()
Returns the General
FunctionFactory used by the associated
policy. |
FunctionFactory |
PolicyMetaData.getTargetFunctionFactory()
Returns the Target
FunctionFactory used by the associated
policy. |
Modifier and Type | Class and Description |
---|---|
class |
BaseFunctionFactory
This is a basic implementation of
FunctionFactory . |
class |
StandardFunctionFactory
This factory supports the standard set of functions specified in XACML
1.x and 2.0.
|
Modifier and Type | Method and Description |
---|---|
FunctionFactory |
FunctionFactoryProxy.getConditionFactory()
Returns the Condition version of an instance of the
FunctionFactory for which this is a proxy. |
FunctionFactory |
BasicFunctionFactoryProxy.getConditionFactory() |
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.getConditionInstance(String identifier)
Returns a factory based on the given identifier.
|
FunctionFactory |
FunctionFactoryProxy.getGeneralFactory()
Returns the General version of an instance of the
FunctionFactory for which this is a proxy. |
FunctionFactory |
BasicFunctionFactoryProxy.getGeneralFactory() |
static FunctionFactory |
FunctionFactory.getGeneralInstance()
Returns the default FunctionFactory that provides access to all the
functions.
|
static FunctionFactory |
FunctionFactory.getGeneralInstance(String identifier)
Returns a factory based on the given identifier.
|
FunctionFactory |
FunctionFactoryProxy.getTargetFactory()
Returns the Target version of an instance of the
FunctionFactory for which this is a proxy. |
FunctionFactory |
BasicFunctionFactoryProxy.getTargetFactory() |
static FunctionFactory |
FunctionFactory.getTargetInstance()
Returns the default FunctionFactory that will only provide those
functions that are usable in Target matching.
|
static FunctionFactory |
FunctionFactory.getTargetInstance(String identifier)
Returns a factory based on the given identifier.
|
Constructor and Description |
---|
BaseFunctionFactory(FunctionFactory superset)
Constructor that sets a "superset factory".
|
BaseFunctionFactory(FunctionFactory superset,
Set supportedFunctions,
Map supportedAbstractFunctions)
Constructor that defines the initial functions supported by this
factory and uses a superset factory.
|
BasicFunctionFactoryProxy(FunctionFactory targetFactory,
FunctionFactory conditionFactory,
FunctionFactory generalFactory)
Creates a new proxy.
|
Copyright © 2023 JBoss by Red Hat. All rights reserved.