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.
|
org.jboss.security.xacml.sunxacml.ctx |
All of the classes that support the context schema are in this
package.
|
org.jboss.security.xacml.sunxacml.finder |
The
finder package supports all of the pieces of the
XACML specification that require custom implementation. |
org.jboss.security.xacml.sunxacml.support.finder |
Modifier and Type | Method and Description |
---|---|
Status |
MatchResult.getStatus()
Returns the status if there was an error, or null if no error occurred
|
Constructor and Description |
---|
MatchResult(int result,
Status status)
Constructor that creates a
MatchResult , including Status
data |
Modifier and Type | Method and Description |
---|---|
Status |
EvaluationResult.getStatus()
Returns the status if there was an error, or null it no error occurred
|
Constructor and Description |
---|
EvaluationResult(Status status)
Constructor that creates an
EvaluationResult of
Indeterminate, including Status data. |
Modifier and Type | Method and Description |
---|---|
static Status |
Status.getInstance(Node root)
Creates a new instance of
Status based on the given
DOM root node. |
static Status |
Status.getOkInstance()
Gets a
Status instance that has the OK status and no
other information. |
Status |
Result.getStatus()
Returns the status data included in this
Result . |
Constructor and Description |
---|
Result(int decision,
Status status)
Constructs a
Result object with status data but without a
resource identifier. |
Result(int decision,
Status status,
Set obligations)
Constructs a
Result object with status data and obligations
but without a resource identifier. |
Result(int decision,
Status status,
String resource)
Constructs a
Result object with status data and a
resource identifier. |
Result(int decision,
Status status,
String resource,
Set obligations)
Constructs a
Result object with status data, a
resource identifier, and obligations. |
Modifier and Type | Method and Description |
---|---|
Status |
PolicyFinderResult.getStatus()
Returns the status if there was an error, or null if no error occurred.
|
Constructor and Description |
---|
PolicyFinderResult(Status status)
Create a result of Indeterminate, including Status data.
|
Modifier and Type | Method and Description |
---|---|
Status |
TopLevelPolicyException.getStatus()
Returns the status information associated with this error.
|
Constructor and Description |
---|
TopLevelPolicyException(Status status)
Constructs a new
TopLevelPolicyException with no message
or cause. |
TopLevelPolicyException(Status status,
String message)
Constructs a new
TopLevelPolicyException with a message,
but no cause. |
TopLevelPolicyException(Status status,
String message,
Throwable cause)
Constructs a new
TopLevelPolicyException with a message
and a cause. |
TopLevelPolicyException(Status status,
Throwable cause)
Constructs a new
TopLevelPolicyException with a cause,
but no message. |
Copyright © 2023 JBoss by Red Hat. All rights reserved.