a6cacc25bdeed2145c27361ae371c3bd25b528bc.svn-base 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package cn.com.goldenwater.webService.onemap;
  2. import javax.xml.bind.JAXBElement;
  3. import javax.xml.bind.annotation.XmlElementDecl;
  4. import javax.xml.bind.annotation.XmlRegistry;
  5. import javax.xml.namespace.QName;
  6. /**
  7. * This object contains factory methods for each Java content interface and Java
  8. * element interface generated in the clientWS package.
  9. * <p>
  10. * An ObjectFactory allows you to programatically construct new instances of the
  11. * Java representation for XML content. The Java representation of XML content
  12. * can consist of schema derived interfaces and classes representing the binding
  13. * of schema type definitions, element declarations and model groups. Factory
  14. * methods for each of these are provided in this class.
  15. */
  16. @XmlRegistry
  17. public class ObjectFactory {
  18. private final static QName _Execute_QNAME = new QName(
  19. "http://logic.services.wegis.supermap.com/", "execute");
  20. private final static QName _ExecuteResponse_QNAME = new QName(
  21. "http://logic.services.wegis.supermap.com/", "executeResponse");
  22. /**
  23. * Create a new ObjectFactory that can be used to create new instances of
  24. * schema derived classes for package: clientWS
  25. */
  26. public ObjectFactory() {
  27. }
  28. /**
  29. * Create an instance of {@link ExecuteResponse }
  30. */
  31. public ExecuteResponse createExecuteResponse() {
  32. return new ExecuteResponse();
  33. }
  34. /**
  35. * Create an instance of {@link Execute }
  36. */
  37. public Execute createExecute() {
  38. return new Execute();
  39. }
  40. /**
  41. * Create an instance of {@link JAXBElement }{@code <}{@link Execute }{@code
  42. * >}
  43. */
  44. @XmlElementDecl(namespace = "http://logic.services.wegis.supermap.com/", name = "execute")
  45. public JAXBElement<Execute> createExecute(Execute value) {
  46. return new JAXBElement<Execute>(_Execute_QNAME, Execute.class, null,
  47. value);
  48. }
  49. /**
  50. * Create an instance of {@link JAXBElement }{@code <}{@link ExecuteResponse }
  51. * {@code >}
  52. */
  53. @XmlElementDecl(namespace = "http://logic.services.wegis.supermap.com/", name = "executeResponse")
  54. public JAXBElement<ExecuteResponse> createExecuteResponse(
  55. ExecuteResponse value) {
  56. return new JAXBElement<ExecuteResponse>(_ExecuteResponse_QNAME,
  57. ExecuteResponse.class, null, value);
  58. }
  59. }