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