Package com.sun.identity.saml2.protocol
Interface StatusMessage
-
@SupportedAll public interface StatusMessage
This class represents theStatusMessage
element in SAML protocol schema. TheStatusMessage
element specifies a message that MAY be returned to an operator.<element name="StatusMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getValue()
Returns theStatusMessage
value.String
toXMLString()
Returns theStatusMessage
in an XML document String format based on theStatusMessage
schema described above.String
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns theStatusMessage
in an XML document String format based on theStatusMessage
schema described above.
-
-
-
Method Detail
-
getValue
String getValue()
Returns theStatusMessage
value.- Returns:
- A String value of the
StatusMessage
-
toXMLString
String toXMLString() throws SAML2Exception
Returns theStatusMessage
in an XML document String format based on theStatusMessage
schema described above.- Returns:
- An XML String representing the
StatusMessage
. - Throws:
SAML2Exception
- if some error occurs during conversion toString
.
-
toXMLString
String toXMLString(boolean includeNSPrefix, boolean declareNS) throws SAML2Exception
Returns theStatusMessage
in an XML document String format based on theStatusMessage
schema described above.- 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 XML String representing the
StatusMessage
. - Throws:
SAML2Exception
- if some error occurs during conversion toString
.
-
-