Status.java revision 6e153e9671eb382c49354ab856404a71477cce58
90N/A//
90N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
90N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
90N/A// Any modifications to this file will be lost upon recompilation of the source schema.
378N/A// Generated on: 2013.01.21 at 10:40:04 AM PST
90N/A//
90N/A
90N/A
90N/Apackage com.sun.identity.entitlement.xacml3.core;
90N/A
90N/Aimport javax.xml.bind.annotation.XmlAccessType;
90N/Aimport javax.xml.bind.annotation.XmlAccessorType;
90N/Aimport javax.xml.bind.annotation.XmlElement;
90N/Aimport javax.xml.bind.annotation.XmlType;
90N/A
90N/A
90N/A/**
90N/A * <p>Java class for StatusType complex type.
90N/A *
90N/A * <p>The following schema fragment specifies the expected content contained within this class.
90N/A *
90N/A * <pre>
90N/A * &lt;complexType name="StatusType">
90N/A * &lt;complexContent>
90N/A * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
90N/A * &lt;sequence>
90N/A * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}StatusCode"/>
90N/A * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}StatusMessage" minOccurs="0"/>
90N/A * &lt;element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}StatusDetail" minOccurs="0"/>
90N/A * &lt;/sequence>
90N/A * &lt;/restriction>
90N/A * &lt;/complexContent>
378N/A * &lt;/complexType>
90N/A * </pre>
90N/A *
90N/A *
90N/A */
90N/A@XmlAccessorType(XmlAccessType.FIELD)
90N/A@XmlType(name = "StatusType", propOrder = {
378N/A "statusCode",
90N/A "statusMessage",
90N/A "statusDetail"
90N/A})
90N/Apublic class Status {
90N/A
90N/A @XmlElement(name = "StatusCode", required = true)
90N/A protected StatusCode statusCode;
90N/A @XmlElement(name = "StatusMessage")
90N/A protected String statusMessage;
90N/A @XmlElement(name = "StatusDetail")
90N/A protected StatusDetail statusDetail;
90N/A
90N/A /**
90N/A * Gets the value of the statusCode property.
90N/A *
90N/A * @return
90N/A * possible object is
90N/A * {@link StatusCode }
90N/A *
90N/A */
90N/A public StatusCode getStatusCode() {
90N/A return statusCode;
90N/A }
90N/A
90N/A /**
90N/A * Sets the value of the statusCode property.
90N/A *
* @param value
* allowed object is
* {@link StatusCode }
*
*/
public void setStatusCode(StatusCode value) {
this.statusCode = value;
}
/**
* Gets the value of the statusMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusMessage() {
return statusMessage;
}
/**
* Sets the value of the statusMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusMessage(String value) {
this.statusMessage = value;
}
/**
* Gets the value of the statusDetail property.
*
* @return
* possible object is
* {@link StatusDetail }
*
*/
public StatusDetail getStatusDetail() {
return statusDetail;
}
/**
* Sets the value of the statusDetail property.
*
* @param value
* allowed object is
* {@link StatusDetail }
*
*/
public void setStatusDetail(StatusDetail value) {
this.statusDetail = value;
}
}