![JAR search and dependency download from the Maven repository](/logo.png)
com.ca.www.UnicenterServicePlus.ServiceDesk.CreateRequestResponse 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="createRequestReturn" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="newRequestHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="newRequestNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"createRequestReturn",
"newRequestHandle",
"newRequestNumber"
})
@XmlRootElement(name = "createRequestResponse")
public class CreateRequestResponse {
@XmlElement(required = true)
protected String createRequestReturn;
@XmlElement(required = true)
protected String newRequestHandle;
@XmlElement(required = true)
protected String newRequestNumber;
/**
* Gets the value of the createRequestReturn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreateRequestReturn() {
return createRequestReturn;
}
/**
* Sets the value of the createRequestReturn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreateRequestReturn(String value) {
this.createRequestReturn = value;
}
/**
* Gets the value of the newRequestHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewRequestHandle() {
return newRequestHandle;
}
/**
* Sets the value of the newRequestHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewRequestHandle(String value) {
this.newRequestHandle = value;
}
/**
* Gets the value of the newRequestNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewRequestNumber() {
return newRequestNumber;
}
/**
* Sets the value of the newRequestNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewRequestNumber(String value) {
this.newRequestNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy