61 lines
1.4 KiB
Plaintext
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>
|
|
* <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>
|
|
* </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;
|
|
}
|
|
|
|
}
|