com.ca.www.UnicenterServicePlus.ServiceDesk.CreateAttmnt Maven / Gradle / Ivy
The newest version!
package com.ca.www.UnicenterServicePlus.ServiceDesk;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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="sid" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="repositoryHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="folderId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="objectHandle" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"repositoryHandle",
"folderId",
"objectHandle",
"description",
"fileName"
})
@XmlRootElement(name = "createAttmnt")
public class CreateAttmnt {
protected int sid;
@XmlElement(required = true)
protected String repositoryHandle;
protected int folderId;
protected int objectHandle;
@XmlElement(required = true)
protected String description;
@XmlElement(required = true)
protected String fileName;
/**
* Gets the value of the sid property.
*
*/
public int getSid() {
return sid;
}
/**
* Sets the value of the sid property.
*
*/
public void setSid(int value) {
this.sid = value;
}
/**
* Gets the value of the repositoryHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRepositoryHandle() {
return repositoryHandle;
}
/**
* Sets the value of the repositoryHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRepositoryHandle(String value) {
this.repositoryHandle = value;
}
/**
* Gets the value of the folderId property.
*
*/
public int getFolderId() {
return folderId;
}
/**
* Sets the value of the folderId property.
*
*/
public void setFolderId(int value) {
this.folderId = value;
}
/**
* Gets the value of the objectHandle property.
*
*/
public int getObjectHandle() {
return objectHandle;
}
/**
* Sets the value of the objectHandle property.
*
*/
public void setObjectHandle(int value) {
this.objectHandle = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the fileName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileName() {
return fileName;
}
/**
* Sets the value of the fileName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileName(String value) {
this.fileName = value;
}
}