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. *

* 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 createExecute(Execute value) { return new JAXBElement(_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 createExecuteResponse( ExecuteResponse value) { return new JAXBElement(_ExecuteResponse_QNAME, ExecuteResponse.class, null, value); } }