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.attr |
Contains many of the classes related to attributes and attribute
retrieval.
|
org.jboss.security.xacml.sunxacml.ctx |
All of the classes that support the context schema are in this
package.
|
Modifier and Type | Method and Description |
---|---|
DateTimeAttribute |
EvaluationCtx.getCurrentDateTime()
Returns the value for the current dateTime as known by the PDP (if this
value was also supplied in the Request, this will generally be a
different value).
|
DateTimeAttribute |
BasicEvaluationCtx.getCurrentDateTime()
Returns the value for the current dateTime.
|
Modifier and Type | Method and Description |
---|---|
static DateTimeAttribute |
DateTimeAttribute.getInstance(Node root)
Returns a new
DateTimeAttribute that represents
the xs:dateTime at a particular DOM node. |
static DateTimeAttribute |
DateTimeAttribute.getInstance(String value)
Returns a new
DateTimeAttribute that represents
the xs:dateTime value indicated by the string provided. |
Modifier and Type | Method and Description |
---|---|
DateTimeAttribute |
Attribute.getIssueInstant()
Returns the moment at which the attribute was issued, or null if no
issue time was provided
|
Constructor and Description |
---|
Attribute(URI id,
String issuer,
DateTimeAttribute issueInstant,
AttributeValue value)
Creates a new
Attribute of the type specified in the
given AttributeValue . |
Attribute(URI id,
URI type,
String issuer,
DateTimeAttribute issueInstant,
AttributeValue value)
Deprecated.
As of version 1.1, replaced by
Attribute(URI,String,DateTimeAttribute,AttributeValue) .
This constructor has some ambiguity in that it allows a
specified datatype and a value that already has some
associated datatype. The new constructor clarifies this
issue by removing the datatype parameter and using the
datatype specified by the given value. |
Attribute(URI id,
URI type,
String issuer,
DateTimeAttribute issueInstant,
List<AttributeValue> values) |
Attribute(URI id,
URI type,
String issuer,
DateTimeAttribute issueInstant,
Set<AttributeValue> values) |
Copyright © 2023 JBoss by Red Hat. All rights reserved.