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 StatusCodestatusCodeprotected StatusDetailstatusDetailprotected StringstatusMessage-
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 StatusCodegetStatusCode()Gets the value of the statusCode property.StatusDetailgetStatusDetail()Gets the value of the statusDetail property.StringgetStatusMessage()Gets the value of the statusMessage property.voidsetStatusCode(StatusCode value)Sets the value of the statusCode property.voidsetStatusDetail(StatusDetail value)Sets the value of the statusDetail property.voidsetStatusMessage(String value)Sets the value of the statusMessage property.StringtoXML()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:
toXMLin interfaceXACMLRootElement- Returns:
- String - Marshaled Results into XML String.
-
-