//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.06.11 at 10:33:54 AM PDT
//
package com.sun.identity.liberty.ws.common.jaxb.protocol;
/**
* Java content class for StatusType complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/liberty/cs-sstc-schema-protocol-01.xsd line 140)
* <p>
* <pre>
* &lt;complexType name="StatusType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusCode"/>
* &lt;element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusMessage" minOccurs="0"/>
* &lt;element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusDetail" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*/
public interface StatusType {
/**
* Gets the value of the statusCode property.
*
* @return
* possible object is
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeElement}
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeType}
*/
com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeType getStatusCode();
/**
* Sets the value of the statusCode property.
*
* @param value
* allowed object is
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeElement}
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeType}
*/
void setStatusCode(com.sun.identity.liberty.ws.common.jaxb.protocol.StatusCodeType value);
/**
* Gets the value of the statusMessage property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getStatusMessage();
/**
* Sets the value of the statusMessage property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setStatusMessage(java.lang.String value);
/**
* Gets the value of the statusDetail property.
*
* @return
* possible object is
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailType}
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailElement}
*/
com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailType getStatusDetail();
/**
* Sets the value of the statusDetail property.
*
* @param value
* allowed object is
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailType}
* {@link com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailElement}
*/
void setStatusDetail(com.sun.identity.liberty.ws.common.jaxb.protocol.StatusDetailType value);
}