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