Class StatusType
- java.lang.Object
-
- org.certificateservices.messages.saml2.protocol.jaxb.StatusType
-
public class StatusType extends java.lang.ObjectJava class for StatusType complex type.
The following schema fragment specifies the expected content contained within this class.
<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>
-
-
Field Summary
Fields Modifier and Type Field Description protected StatusCodeTypestatusCodeprotected StatusDetailTypestatusDetailprotected java.lang.StringstatusMessage
-
Constructor Summary
Constructors Constructor Description StatusType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StatusCodeTypegetStatusCode()Gets the value of the statusCode property.StatusDetailTypegetStatusDetail()Gets the value of the statusDetail property.java.lang.StringgetStatusMessage()Gets the value of the statusMessage property.voidsetStatusCode(StatusCodeType value)Sets the value of the statusCode property.voidsetStatusDetail(StatusDetailType value)Sets the value of the statusDetail property.voidsetStatusMessage(java.lang.String value)Sets the value of the statusMessage property.
-
-
-
Field Detail
-
statusCode
protected StatusCodeType statusCode
-
statusMessage
protected java.lang.String statusMessage
-
statusDetail
protected StatusDetailType statusDetail
-
-
Method Detail
-
getStatusCode
public StatusCodeType getStatusCode()
Gets the value of the statusCode property.- Returns:
- possible object is
StatusCodeType
-
setStatusCode
public void setStatusCode(StatusCodeType value)
Sets the value of the statusCode property.- Parameters:
value- allowed object isStatusCodeType
-
getStatusMessage
public java.lang.String getStatusMessage()
Gets the value of the statusMessage property.- Returns:
- possible object is
String
-
setStatusMessage
public void setStatusMessage(java.lang.String value)
Sets the value of the statusMessage property.- Parameters:
value- allowed object isString
-
getStatusDetail
public StatusDetailType getStatusDetail()
Gets the value of the statusDetail property.- Returns:
- possible object is
StatusDetailType
-
setStatusDetail
public void setStatusDetail(StatusDetailType value)
Sets the value of the statusDetail property.- Parameters:
value- allowed object isStatusDetailType
-
-