// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs // See http://java.sun.com/xml/jaxb // 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. *

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) *

*

 * <complexType name="StatusType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusCode"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusMessage" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}StatusDetail" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ 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); }