com.ca.www.UnicenterServicePlus.ServiceDesk.CreateObject 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="objectType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="attrVals" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
* <element name="attributes" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
* <element name="createObjectResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="newHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"objectType",
"attrVals",
"attributes",
"createObjectResult",
"newHandle"
})
@XmlRootElement(name = "createObject")
public class CreateObject {
protected int sid;
@XmlElement(required = true)
protected String objectType;
@XmlElement(required = true)
protected ArrayOfString attrVals;
@XmlElement(required = true)
protected ArrayOfString attributes;
@XmlElement(required = true)
protected String createObjectResult;
@XmlElement(required = true)
protected String newHandle;
/**
* 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 objectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjectType() {
return objectType;
}
/**
* Sets the value of the objectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjectType(String value) {
this.objectType = value;
}
/**
* Gets the value of the attrVals property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getAttrVals() {
return attrVals;
}
/**
* Sets the value of the attrVals property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setAttrVals(ArrayOfString value) {
this.attrVals = value;
}
/**
* Gets the value of the attributes property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getAttributes() {
return attributes;
}
/**
* Sets the value of the attributes property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setAttributes(ArrayOfString value) {
this.attributes = value;
}
/**
* Gets the value of the createObjectResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreateObjectResult() {
return createObjectResult;
}
/**
* Sets the value of the createObjectResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreateObjectResult(String value) {
this.createObjectResult = value;
}
/**
* Gets the value of the newHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewHandle() {
return newHandle;
}
/**
* Sets the value of the newHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewHandle(String value) {
this.newHandle = value;
}
}