| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package cn.com.goldenwater.webService.onemap;
- import javax.xml.bind.JAXBElement;
- import javax.xml.bind.annotation.XmlElementDecl;
- import javax.xml.bind.annotation.XmlRegistry;
- import javax.xml.namespace.QName;
- /**
- * This object contains factory methods for each Java content interface and Java
- * element interface generated in the clientWS package.
- * <p>
- * An ObjectFactory allows you to programatically construct new instances of the
- * Java representation for XML content. The Java representation of XML content
- * can consist of schema derived interfaces and classes representing the binding
- * of schema type definitions, element declarations and model groups. Factory
- * methods for each of these are provided in this class.
- */
- @XmlRegistry
- public class ObjectFactory {
- private final static QName _Execute_QNAME = new QName(
- "http://logic.services.wegis.supermap.com/", "execute");
- private final static QName _ExecuteResponse_QNAME = new QName(
- "http://logic.services.wegis.supermap.com/", "executeResponse");
- /**
- * Create a new ObjectFactory that can be used to create new instances of
- * schema derived classes for package: clientWS
- */
- public ObjectFactory() {
- }
- /**
- * Create an instance of {@link ExecuteResponse }
- */
- public ExecuteResponse createExecuteResponse() {
- return new ExecuteResponse();
- }
- /**
- * Create an instance of {@link Execute }
- */
- public Execute createExecute() {
- return new Execute();
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Execute }{@code
- * >}
- */
- @XmlElementDecl(namespace = "http://logic.services.wegis.supermap.com/", name = "execute")
- public JAXBElement<Execute> createExecute(Execute value) {
- return new JAXBElement<Execute>(_Execute_QNAME, Execute.class, null,
- value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ExecuteResponse }
- * {@code >}
- */
- @XmlElementDecl(namespace = "http://logic.services.wegis.supermap.com/", name = "executeResponse")
- public JAXBElement<ExecuteResponse> createExecuteResponse(
- ExecuteResponse value) {
- return new JAXBElement<ExecuteResponse>(_ExecuteResponse_QNAME,
- ExecuteResponse.class, null, value);
- }
- }
|