Go to most recent revision | View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed
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;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*
*
*/
@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> auth;
@XmlElement(required = true)
protected FileContents xmlInFile;
@XmlElementRef(name = "adminRepositoryID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> adminRepositoryID;
@XmlElementRef(name = "importResponseEndPoint", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> importResponseEndPoint;
@XmlElementRef(name = "importResponseID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> importResponseID;
@XmlElementRef(name = "xmlImportOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<FileContents> xmlImportOptions;
protected boolean validateOnly;
/**
* Gets the value of the auth property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Auth }{@code >}
*
*/
public JAXBElement<Auth> 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<Auth> value) {
this.auth = ((JAXBElement<Auth> ) 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<String> 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<String> value) {
this.adminRepositoryID = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the importResponseEndPoint property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> 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<String> value) {
this.importResponseEndPoint = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the importResponseID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> 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<String> value) {
this.importResponseID = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the xmlImportOptions property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link FileContents }{@code >}
*
*/
public JAXBElement<FileContents> 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<FileContents> value) {
this.xmlImportOptions = ((JAXBElement<FileContents> ) 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;
}
}