
com.adlibsoftware.client.StartGetLibraryFileResponse 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 StartGetLibraryFileResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StartGetLibraryFileResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="HashValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* <element name="LibraryFilePartContext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StartGetLibraryFileResponse", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", propOrder = {
"fileSize",
"hashValue",
"libraryFilePartContext"
})
public class StartGetLibraryFileResponse {
@XmlElement(name = "FileSize")
protected Long fileSize;
@XmlElementRef(name = "HashValue", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement hashValue;
@XmlElementRef(name = "LibraryFilePartContext", namespace = "http://schemas.datacontract.org/2004/07/Adlib.Public.Objects", type = JAXBElement.class, required = false)
protected JAXBElement libraryFilePartContext;
/**
* Gets the value of the fileSize property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getFileSize() {
return fileSize;
}
/**
* Sets the value of the fileSize property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setFileSize(Long value) {
this.fileSize = value;
}
/**
* Gets the value of the hashValue property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
*
*/
public JAXBElement getHashValue() {
return hashValue;
}
/**
* Sets the value of the hashValue property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
*
*/
public void setHashValue(JAXBElement value) {
this.hashValue = value;
}
/**
* Gets the value of the libraryFilePartContext property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getLibraryFilePartContext() {
return libraryFilePartContext;
}
/**
* Sets the value of the libraryFilePartContext property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setLibraryFilePartContext(JAXBElement value) {
this.libraryFilePartContext = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy