Class StatusMessageImpl
- java.lang.Object
-
- com.sun.identity.xacml.context.impl.StatusMessageImpl
-
- All Implemented Interfaces:
StatusMessage
@SupportedAll public class StatusMessageImpl extends Object implements StatusMessage
TheStatusMessage
element is a container of one or moreStatusMessage
s issuded by authorization authority.
-
-
Constructor Summary
Constructors Constructor Description StatusMessageImpl()
Constructs aStatusMessage
objectStatusMessageImpl(String xml)
Constructs aStatusMessage
object from an XML stringStatusMessageImpl(Element element)
Constructs aStatusMessage
object from an XML DOM element
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
Returns thevalue
of this objectboolean
isMutable()
Checks if the object is mutablevoid
makeImmutable()
Makes the object immutablevoid
setValue(String value)
Sets thevalue
of this objectString
toXMLString()
Returns a string representationString
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns a string representation
-
-
-
Constructor Detail
-
StatusMessageImpl
public StatusMessageImpl() throws XACMLException
Constructs aStatusMessage
object- Throws:
XACMLException
-
StatusMessageImpl
public StatusMessageImpl(String xml) throws XACMLException
Constructs aStatusMessage
object from an XML string- Parameters:
xml
- string representing aStatusMessage
object- Throws:
XACMLException
- If the XML string could not be processed.
-
StatusMessageImpl
public StatusMessageImpl(Element element) throws XACMLException
Constructs aStatusMessage
object from an XML DOM element- Parameters:
element
- XML DOM element representing aStatusMessage
object- Throws:
XACMLException
- If the DOM element could not be processed.
-
-
Method Detail
-
getValue
public String getValue()
Returns thevalue
of this object- Specified by:
getValue
in interfaceStatusMessage
- Returns:
- the
value
of this object
-
setValue
public void setValue(String value) throws XACMLException
Sets thevalue
of this object- Specified by:
setValue
in interfaceStatusMessage
- Throws:
XACMLException
- if the object is immutable
-
toXMLString
public String toXMLString() throws XACMLException
Returns a string representation- Specified by:
toXMLString
in interfaceStatusMessage
- Returns:
- a string representation
- Throws:
XACMLException
- if conversion fails for any reason
-
toXMLString
public String toXMLString(boolean includeNSPrefix, boolean declareNS) throws XACMLException
Returns a string representation- Specified by:
toXMLString
in interfaceStatusMessage
- Parameters:
includeNSPrefix
- 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.- Returns:
- a string representation
- Throws:
XACMLException
- if conversion fails for any reason
-
isMutable
public boolean isMutable()
Checks if the object is mutable- Specified by:
isMutable
in interfaceStatusMessage
- Returns:
true
if the object is mutable,false
otherwise
-
makeImmutable
public void makeImmutable()
Makes the object immutable- Specified by:
makeImmutable
in interfaceStatusMessage
-
-