com.ca.www.UnicenterServicePlus.ServiceDesk.CreateLrelRelationships 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="contextObject" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lrelName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="addObjectHandles" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"contextObject",
"lrelName",
"addObjectHandles"
})
@XmlRootElement(name = "createLrelRelationships")
public class CreateLrelRelationships {
protected int sid;
@XmlElement(required = true)
protected String contextObject;
@XmlElement(required = true)
protected String lrelName;
@XmlElement(required = true)
protected ArrayOfString addObjectHandles;
/**
* 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 contextObject property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContextObject() {
return contextObject;
}
/**
* Sets the value of the contextObject property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContextObject(String value) {
this.contextObject = value;
}
/**
* Gets the value of the lrelName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLrelName() {
return lrelName;
}
/**
* Sets the value of the lrelName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLrelName(String value) {
this.lrelName = value;
}
/**
* Gets the value of the addObjectHandles property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getAddObjectHandles() {
return addObjectHandles;
}
/**
* Sets the value of the addObjectHandles property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setAddObjectHandles(ArrayOfString value) {
this.addObjectHandles = value;
}
}