com.ca.www.UnicenterServicePlus.ServiceDesk.DoSelect 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="whereClause" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="attributes" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"objectType",
"whereClause",
"maxRows",
"attributes"
})
@XmlRootElement(name = "doSelect")
public class DoSelect {
protected int sid;
@XmlElement(required = true)
protected String objectType;
@XmlElement(required = true)
protected String whereClause;
protected int maxRows;
@XmlElement(required = true)
protected ArrayOfString attributes;
/**
* 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 whereClause property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWhereClause() {
return whereClause;
}
/**
* Sets the value of the whereClause property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWhereClause(String value) {
this.whereClause = value;
}
/**
* Gets the value of the maxRows property.
*
*/
public int getMaxRows() {
return maxRows;
}
/**
* Sets the value of the maxRows property.
*
*/
public void setMaxRows(int value) {
this.maxRows = 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;
}
}