// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.03.07 at 12:06:22 PM IST // package com.netapp.corp.it.services.globalservices.source; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="standard" type="{http://it.corp.netapp.com/services/globalservices/Source}ExchangeFaultData"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "standard" }) @XmlRootElement(name = "MT_SearchCaseFault") public class MTSearchCaseFault { @XmlElement(required = true) protected ExchangeFaultData standard; /** * Gets the value of the standard property. * * @return * possible object is * {@link ExchangeFaultData } * */ public ExchangeFaultData getStandard() { return standard; } /** * Sets the value of the standard property. * * @param value * allowed object is * {@link ExchangeFaultData } * */ public void setStandard(ExchangeFaultData value) { this.standard = value; } }