Class Status
- java.lang.Object
-
- com.sun.identity.entitlement.xacml3.core.Status
-
- All Implemented Interfaces:
XACMLRootElement
public class Status extends Object implements XACMLRootElement
Java 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:xacml:3.0:core:schema:wd-17}StatusCode"/> <element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}StatusMessage" minOccurs="0"/> <element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}StatusDetail" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StatusCode
statusCode
protected StatusDetail
statusDetail
protected String
statusMessage
-
Fields inherited from interface com.sun.identity.entitlement.xacml3.core.XACMLRootElement
XACML3_NAMESPACE
-
-
Constructor Summary
Constructors Constructor Description Status()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StatusCode
getStatusCode()
Gets the value of the statusCode property.StatusDetail
getStatusDetail()
Gets the value of the statusDetail property.String
getStatusMessage()
Gets the value of the statusMessage property.void
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.String
toXML()
Default toXML Method to Marshal Object into XML.
-
-
-
Field Detail
-
statusCode
protected StatusCode statusCode
-
statusMessage
protected String statusMessage
-
statusDetail
protected StatusDetail statusDetail
-
-
Method Detail
-
getStatusCode
public StatusCode getStatusCode()
Gets the value of the statusCode property.- Returns:
- possible object is
StatusCode
-
setStatusCode
public void setStatusCode(StatusCode value)
Sets the value of the statusCode property.- Parameters:
value
- allowed object isStatusCode
-
getStatusMessage
public String getStatusMessage()
Gets the value of the statusMessage property.- Returns:
- possible object is
String
-
setStatusMessage
public void setStatusMessage(String value)
Sets the value of the statusMessage property.- Parameters:
value
- allowed object isString
-
getStatusDetail
public StatusDetail getStatusDetail()
Gets the value of the statusDetail property.- Returns:
- possible object is
StatusDetail
-
setStatusDetail
public void setStatusDetail(StatusDetail value)
Sets the value of the statusDetail property.- Parameters:
value
- allowed object isStatusDetail
-
toXML
public String toXML()
Default toXML Method to Marshal Object into XML.- Specified by:
toXML
in interfaceXACMLRootElement
- Returns:
- String - Marshaled Results into XML String.
-
-