// // 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 java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for ExchangeFaultData complex type. * *

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

 * <complexType name="ExchangeFaultData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="faultText" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="faultUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="faultDetail" type="{http://it.corp.netapp.com/services/globalservices/Source}ExchangeLogData" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExchangeFaultData", propOrder = { "faultText", "faultUrl", "faultDetail" }) public class ExchangeFaultData { @XmlElement(required = true) protected String faultText; protected String faultUrl; protected List faultDetail; /** * Gets the value of the faultText property. * * @return * possible object is * {@link String } * */ public String getFaultText() { return faultText; } /** * Sets the value of the faultText property. * * @param value * allowed object is * {@link String } * */ public void setFaultText(String value) { this.faultText = value; } /** * Gets the value of the faultUrl property. * * @return * possible object is * {@link String } * */ public String getFaultUrl() { return faultUrl; } /** * Sets the value of the faultUrl property. * * @param value * allowed object is * {@link String } * */ public void setFaultUrl(String value) { this.faultUrl = value; } /** * Gets the value of the faultDetail property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the faultDetail property. * *

* For example, to add a new item, do as follows: *

     *    getFaultDetail().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExchangeLogData } * * */ public List getFaultDetail() { if (faultDetail == null) { faultDetail = new ArrayList(); } return this.faultDetail; } }