package th.co.muangthai.endrprint.wfurlxml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *
Java class for responseMessage complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="responseMessage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="messageCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="messageDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="messageStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "responseMessage", propOrder = {
"messageCode",
"messageDescription",
"messageStatus",
"url"
})
public class ResponseMessage {
protected String messageCode;
protected String messageDescription;
protected String messageStatus;
protected String url;
/**
* Gets the value of the messageCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageCode() {
return messageCode;
}
/**
* Sets the value of the messageCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageCode(String value) {
this.messageCode = value;
}
/**
* Gets the value of the messageDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageDescription() {
return messageDescription;
}
/**
* Sets the value of the messageDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageDescription(String value) {
this.messageDescription = value;
}
/**
* Gets the value of the messageStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessageStatus() {
return messageStatus;
}
/**
* Sets the value of the messageStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessageStatus(String value) {
this.messageStatus = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
}