Class ActionImpl
java.lang.Object
com.sun.identity.xacml.context.impl.ActionImpl
- All Implemented Interfaces:
XmlSerializable
,Action
The
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>
-
Constructor Summary
ConstructorDescriptionCreates a new instance of ActionImplActionImpl
(String xml) This constructor is used to buildAction
object from a XML string.ActionImpl
(Element element) This constructor is used to buildAction
object from a block of existing XML that has already been built into a DOM. -
Method Summary
Modifier and TypeMethodDescriptionReturns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned.boolean
Checks if the object is mutablevoid
Makes the object immutablevoid
setAttributes
(List attributes) Sets theAttribute
elements of this objecttoDocumentFragment
(Document document, boolean includeNSPrefix, boolean declareNS) Serializes the element into an XMLDocumentFragment
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.sun.identity.xacml.context.Action
toXMLString, toXMLString
-
Constructor Details
-
ActionImpl
public ActionImpl()Creates a new instance of ActionImpl -
ActionImpl
This constructor is used to buildAction
object from a XML string.- Parameters:
xml
- Ajava.lang.String
representing aAction
object- Throws:
XACMLException
- if it could not process the XML string
-
ActionImpl
This constructor is used to buildAction
object from a block of existing XML that has already been built into a DOM.- Parameters:
element
- Aorg.w3c.dom.Element
representing DOM tree forAction
object- Throws:
XACMLException
- if it could not process the Element
-
-
Method Details
-
getAttributes
Description copied from interface:Action
Returns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned.- Specified by:
getAttributes
in interfaceAction
- Returns:
- the
Attribute
elements of this object
-
setAttributes
Sets theAttribute
elements of this object- Specified by:
setAttributes
in interfaceAction
- Parameters:
attributes
-Attribute
elements of this object attributes could be an emptyList
, if no attributes are present.- Throws:
XACMLException
- if the object is immutable An object is consideredimmutable
ifmakeImmutable()
has been invoked on it. It can be determined by callingmutable
on the object.
-
toDocumentFragment
public DocumentFragment toDocumentFragment(Document document, boolean includeNSPrefix, boolean declareNS) throws com.sun.identity.saml2.common.SAML2Exception Description copied from interface:XmlSerializable
Serializes the element into an XMLDocumentFragment
. A default implementation is provided for compatibility with legacy code that implementsXmlSerializable.toXMLString()
, but it is highly recommended to override this method.- Specified by:
toDocumentFragment
in interfaceXmlSerializable
- Parameters:
document
- the parentDocument
to create the document fragment from.includeNSPrefix
- whether to include a namespace prefix in the document elements.declareNS
- whether to declare any namespaces or assume that they are already declared.- Returns:
- the XML document fragment representing this SAML2 element.
- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the element cannot be serialized for any reason.
-
makeImmutable
public void makeImmutable()Makes the object immutable- Specified by:
makeImmutable
in interfaceAction
-
isMutable
public boolean isMutable()Checks if the object is mutable
-