![JAR search and dependency download from the Maven repository](/logo.png)
com.ca.www.UnicenterServicePlus.ServiceDesk.AttachURLLink Maven / Gradle / Ivy
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="docId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="attmntName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"docId",
"url",
"attmntName",
"description"
})
@XmlRootElement(name = "attachURLLink")
public class AttachURLLink {
protected int sid;
protected int docId;
@XmlElement(required = true)
protected String url;
@XmlElement(required = true)
protected String attmntName;
@XmlElement(required = true)
protected String description;
/**
* 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 docId property.
*
*/
public int getDocId() {
return docId;
}
/**
* Sets the value of the docId property.
*
*/
public void setDocId(int value) {
this.docId = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the attmntName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAttmntName() {
return attmntName;
}
/**
* Sets the value of the attmntName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAttmntName(String value) {
this.attmntName = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy