ENDRPrint/.svn/pristine/00/0077af54a40a95a5a37c18ae41bfaaf6f8305f3c.svn-base
2024-08-14 10:33:27 +07:00

61 lines
1.4 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 getUrl complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="getUrl">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="imageDocument" type="{http://wf108.edas.scc.com/}requestMessage" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}