package net.brutex.sbm.wsclient; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; 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="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
 *         <element name="xmlInFile" type="{urn:aewebservices71}FileContents"/>
 *         <element name="adminRepositoryID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="importResponseEndPoint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="importResponseID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="xmlImportOptions" type="{urn:aewebservices71}FileContents" minOccurs="0"/>
 *         <element name="validateOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auth", "xmlInFile", "adminRepositoryID", "importResponseEndPoint", "importResponseID", "xmlImportOptions", "validateOnly" }) @XmlRootElement(name = "Import") public class Import { @XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement auth; @XmlElement(required = true) protected FileContents xmlInFile; @XmlElementRef(name = "adminRepositoryID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement adminRepositoryID; @XmlElementRef(name = "importResponseEndPoint", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement importResponseEndPoint; @XmlElementRef(name = "importResponseID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement importResponseID; @XmlElementRef(name = "xmlImportOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement xmlImportOptions; protected boolean validateOnly; /** * Gets the value of the auth property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Auth }{@code >} * */ public JAXBElement getAuth() { return auth; } /** * Sets the value of the auth property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Auth }{@code >} * */ public void setAuth(JAXBElement value) { this.auth = ((JAXBElement ) value); } /** * Gets the value of the xmlInFile property. * * @return * possible object is * {@link FileContents } * */ public FileContents getXmlInFile() { return xmlInFile; } /** * Sets the value of the xmlInFile property. * * @param value * allowed object is * {@link FileContents } * */ public void setXmlInFile(FileContents value) { this.xmlInFile = value; } /** * Gets the value of the adminRepositoryID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getAdminRepositoryID() { return adminRepositoryID; } /** * Sets the value of the adminRepositoryID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setAdminRepositoryID(JAXBElement value) { this.adminRepositoryID = ((JAXBElement ) value); } /** * Gets the value of the importResponseEndPoint property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getImportResponseEndPoint() { return importResponseEndPoint; } /** * Sets the value of the importResponseEndPoint property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setImportResponseEndPoint(JAXBElement value) { this.importResponseEndPoint = ((JAXBElement ) value); } /** * Gets the value of the importResponseID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getImportResponseID() { return importResponseID; } /** * Sets the value of the importResponseID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setImportResponseID(JAXBElement value) { this.importResponseID = ((JAXBElement ) value); } /** * Gets the value of the xmlImportOptions property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link FileContents }{@code >} * */ public JAXBElement getXmlImportOptions() { return xmlImportOptions; } /** * Sets the value of the xmlImportOptions property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link FileContents }{@code >} * */ public void setXmlImportOptions(JAXBElement value) { this.xmlImportOptions = ((JAXBElement ) value); } /** * Gets the value of the validateOnly property. * */ public boolean isValidateOnly() { return validateOnly; } /** * Sets the value of the validateOnly property. * */ public void setValidateOnly(boolean value) { this.validateOnly = value; } }