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 requestMessage complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="requestMessage"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="applicationNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="documentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="permission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="position" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="templateId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="versionNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @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; } }