ENDRPrint_12CRelease/.svn/pristine/5e/5e85f4f37063664107b2e1e34394869aa82afa48.svn-base

223 lines
5.1 KiB
Plaintext
Raw Permalink Normal View History

2024-08-14 10:58:03 +07:00
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 requestMessage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="requestMessage">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="applicationNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="documentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="permission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="position" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="templateId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="versionNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "requestMessage", propOrder = {
"applicationNumber",
"documentType",
"pageNumber",
"permission",
"position",
"templateId",
"versionNumber"
})
public class RequestMessage {
protected String applicationNumber;
protected String documentType;
protected String pageNumber;
protected String permission;
protected String position;
protected String templateId;
protected String versionNumber;
/**
* Gets the value of the applicationNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplicationNumber() {
return applicationNumber;
}
/**
* Sets the value of the applicationNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplicationNumber(String value) {
this.applicationNumber = value;
}
/**
* Gets the value of the documentType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocumentType() {
return documentType;
}
/**
* Sets the value of the documentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentType(String value) {
this.documentType = value;
}
/**
* Gets the value of the pageNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPageNumber() {
return pageNumber;
}
/**
* Sets the value of the pageNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPageNumber(String value) {
this.pageNumber = value;
}
/**
* Gets the value of the permission property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPermission() {
return permission;
}
/**
* Sets the value of the permission property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPermission(String value) {
this.permission = value;
}
/**
* Gets the value of the position property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPosition() {
return position;
}
/**
* Sets the value of the position property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPosition(String value) {
this.position = value;
}
/**
* Gets the value of the templateId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTemplateId() {
return templateId;
}
/**
* Sets the value of the templateId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTemplateId(String value) {
this.templateId = value;
}
/**
* Gets the value of the versionNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionNumber() {
return versionNumber;
}
/**
* Sets the value of the versionNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionNumber(String value) {
this.versionNumber = value;
}
}