
com.adlibsoftware.client.BeginPutLibraryFile 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.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="fileId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fileId",
"fileName"
})
@XmlRootElement(name = "BeginPutLibraryFile")
public class BeginPutLibraryFile {
protected Long fileId;
@XmlElementRef(name = "fileName", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false)
protected JAXBElement fileName;
/**
* Gets the value of the fileId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getFileId() {
return fileId;
}
/**
* Sets the value of the fileId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setFileId(Long value) {
this.fileId = value;
}
/**
* Gets the value of the fileName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getFileName() {
return fileName;
}
/**
* Sets the value of the fileName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFileName(JAXBElement value) {
this.fileName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy