
com.adlibsoftware.client.GetJobFilePartResponse2 Maven / Gradle / Ivy
package com.adlibsoftware.client;
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.XmlType;
/**
* Java class for GetJobFilePartResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetJobFilePartResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FilePart" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* <element name="FilePartContext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FilePartSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetJobFilePartResponse", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = {
"filePart",
"filePartContext",
"filePartSize"
})
public class GetJobFilePartResponse2 {
@XmlElementRef(name = "FilePart", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement filePart;
@XmlElementRef(name = "FilePartContext", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement filePartContext;
@XmlElement(name = "FilePartSize")
protected Integer filePartSize;
/**
* Gets the value of the filePart property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
*
*/
public JAXBElement getFilePart() {
return filePart;
}
/**
* Sets the value of the filePart property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
*
*/
public void setFilePart(JAXBElement value) {
this.filePart = value;
}
/**
* Gets the value of the filePartContext property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getFilePartContext() {
return filePartContext;
}
/**
* Sets the value of the filePartContext property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFilePartContext(JAXBElement value) {
this.filePartContext = value;
}
/**
* Gets the value of the filePartSize property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFilePartSize() {
return filePartSize;
}
/**
* Sets the value of the filePartSize property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFilePartSize(Integer value) {
this.filePartSize = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy