public interface Action
Action
element specifies information about the
action requested in the Request
context by listing a
sequence of Attribute
elements associated with the
action.
<xs:element name="Action" type="xacml-context:ActionType"/> <xs:complexType name="ActionType"> <xs:sequence> <xs:element ref="xacml-context:Attribute" minOccurs="0" maxOccurs="unbounded"/> <xs:sequence> <xs:complexType>
Modifier and Type | Method and Description |
---|---|
List |
getAttributes()
Returns zero to many
Attribute elements of this object
If no attributes and present, empty List will be returned. |
boolean |
isMutable()
Checks if the object is mutable
|
void |
makeImmutable()
Makes the object immutable
|
void |
setAttributes(List attributes)
Sets the
Attribute elements of this object |
String |
toXMLString()
Returns a string representation of this object
|
String |
toXMLString(boolean includeNSPrefix,
boolean declareNS)
Returns a
String representation of this object |
List getAttributes()
Attribute
elements of this object
If no attributes and present, empty List
will be returned.Attribute
elements of this objectvoid setAttributes(List attributes) throws XACMLException
Attribute
elements of this objectattributes
- Attribute
elements of this object
attributes could be an empty List
, if no attributes
are present.XACMLException
- if the object is immutable
An object is considered immutable
if
makeImmutable()
has been invoked on it. It can
be determined by calling isMutable
on the object.String toXMLString(boolean includeNSPrefix, boolean declareNS) throws XACMLException
String
representation of this objectincludeNSPrefix
- Determines whether or not the namespace qualifier
is prepended to the Element when converteddeclareNS
- Determines whether or not the namespace is declared
within the Element.XACMLException
- if conversion fails for any reasonString toXMLString() throws XACMLException
XACMLException
- if conversion fails for any reasonvoid makeImmutable()
boolean isMutable()
true
if the object is mutable,
false
otherwiseCopyright © 2010-2018, ForgeRock All Rights Reserved.