com.ca.www.UnicenterServicePlus.ServiceDesk.CallServerMethod 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="methodName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="factoryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="formatList" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="parameters" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sid",
"methodName",
"factoryName",
"formatList",
"parameters"
})
@XmlRootElement(name = "callServerMethod")
public class CallServerMethod {
protected int sid;
@XmlElement(required = true)
protected String methodName;
@XmlElement(required = true)
protected String factoryName;
@XmlElement(required = true)
protected String formatList;
@XmlElement(required = true)
protected ArrayOfString parameters;
/**
* 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 methodName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMethodName() {
return methodName;
}
/**
* Sets the value of the methodName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMethodName(String value) {
this.methodName = value;
}
/**
* Gets the value of the factoryName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFactoryName() {
return factoryName;
}
/**
* Sets the value of the factoryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFactoryName(String value) {
this.factoryName = value;
}
/**
* Gets the value of the formatList property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormatList() {
return formatList;
}
/**
* Sets the value of the formatList property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormatList(String value) {
this.formatList = value;
}
/**
* Gets the value of the parameters property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getParameters() {
return parameters;
}
/**
* Sets the value of the parameters property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setParameters(ArrayOfString value) {
this.parameters = value;
}
}