Package com.sun.identity.saml2.protocol
Interface StatusCode
- All Superinterfaces:
XmlSerializable
This class represents the
StatusCodeType
complex type in
SAML protocol schema.
The StatusCode
element specifies a code or a set of nested codes
representing the status of the corresponding request.
<complexType name="StatusCodeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:protocol}StatusCode" minOccurs="0"/> </sequence> <attribute name="Value" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of the statusCode property.getValue()
Returns the value of the value property.boolean
Returns true if the object is mutable, false otherwisevoid
Makes the object immutablevoid
setStatusCode
(StatusCode value) Sets the value of the statusCode property.void
Sets the value of the value 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:
-
getValue
String getValue()Returns the value of the value property.- Returns:
- the value of the value property
- See Also:
-
setValue
Sets the value of the value property.- Parameters:
value
- the value of the value property to be set- Throws:
com.sun.identity.saml2.common.SAML2Exception
- if the object is immutable- See Also:
-
makeImmutable
void makeImmutable()Makes the object immutable -
isMutable
boolean isMutable()Returns true if the object is mutable, false otherwise- Returns:
- true if the object is mutable, false otherwise
-