
com.adlibsoftware.client.GetJobFileOptions 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for GetJobFileOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetJobFileOptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FilePartSizeBytes" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="HashAlgorithm" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Enums}HashAlgorithm" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetJobFileOptions", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = {
"filePartSizeBytes",
"hashAlgorithm"
})
public class GetJobFileOptions {
@XmlElementRef(name = "FilePartSizeBytes", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement filePartSizeBytes;
@XmlElement(name = "HashAlgorithm")
@XmlSchemaType(name = "string")
protected HashAlgorithm hashAlgorithm;
/**
* Gets the value of the filePartSizeBytes property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Integer }{@code >}
*
*/
public JAXBElement getFilePartSizeBytes() {
return filePartSizeBytes;
}
/**
* Sets the value of the filePartSizeBytes property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Integer }{@code >}
*
*/
public void setFilePartSizeBytes(JAXBElement value) {
this.filePartSizeBytes = value;
}
/**
* Gets the value of the hashAlgorithm property.
*
* @return
* possible object is
* {@link HashAlgorithm }
*
*/
public HashAlgorithm getHashAlgorithm() {
return hashAlgorithm;
}
/**
* Sets the value of the hashAlgorithm property.
*
* @param value
* allowed object is
* {@link HashAlgorithm }
*
*/
public void setHashAlgorithm(HashAlgorithm value) {
this.hashAlgorithm = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy