Package com.sun.identity.saml2.protocol
Interface Status
- All Superinterfaces:
XmlSerializable
This class represents the
StatusType
complex type in
SAML protocol schema.
<complexType name="StatusType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}StatusCode"/> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}StatusMessage" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}StatusDetail" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of the statusCode property.Returns the value of the statusDetail property.Returns the value of the statusMessage property.boolean
Returns true if the object is mutable, false otherwisevoid
Makes the obejct immutablevoid
setStatusCode
(StatusCode value) Sets the value of the statusCode property.void
setStatusDetail
(StatusDetail value) Sets the value of the statusDetail property.void
setStatusMessage
(String value) Sets the value of the statusMessage property.Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
Method Details
-
getStatusCode
StatusCode getStatusCode()Returns the value of the statusCode property.- Returns:
- the value of the statusCode property
- See Also:
-
setStatusCode
Sets the value of the statusCode property.- Parameters:
value
- the value of the statusCode property to be set- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable- See Also:
-
getStatusMessage
String getStatusMessage()Returns the value of the statusMessage property.- Returns:
- the value of the statusMessage property
- See Also:
-
setStatusMessage
Sets the value of the statusMessage property.- Parameters:
value
- the value of the statusMessage property to be set- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable- See Also:
-
getStatusDetail
StatusDetail getStatusDetail()Returns the value of the statusDetail property.- Returns:
- the value of the statusDetail property
- See Also:
-
setStatusDetail
Sets the value of the statusDetail property.- Parameters:
value
- the value of the statusDetail property to be set- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable- See Also:
-
makeImmutable
void makeImmutable()Makes the obejct immutable -
isMutable
boolean isMutable()Returns true if the object is mutable, false otherwise- Returns:
- true if the object is mutable, false otherwise
-