ENDRPrint_12CRelease/.svn/pristine/a8/a857b809de058dad15599c7b3533278c46b6ad65.svn-base
2024-08-14 10:58:03 +07:00

142 lines
3.3 KiB
Plaintext

package th.co.muangthai.endrprint.wfurlxml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for responseMessage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="responseMessage">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="messageCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="messageDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="messageStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}