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 getUrl complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="getUrl">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="imageDocument" type="{http://wf108.edas.scc.com/}requestMessage" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getUrl", propOrder = { "imageDocument" }) public class GetUrl { protected RequestMessage imageDocument; /** * Gets the value of the imageDocument property. * * @return * possible object is * {@link RequestMessage } * */ public RequestMessage getImageDocument() { return imageDocument; } /** * Sets the value of the imageDocument property. * * @param value * allowed object is * {@link RequestMessage } * */ public void setImageDocument(RequestMessage value) { this.imageDocument = value; } }