d67bcb4e508aff7f11d6befa20f52e1a75735aff.svn-base 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package cn.com.goldenwater.dcproj.webService.login;
  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
  8. * Java content interface and Java element interface
  9. * generated in the cn.com.dhcc.uums.service.uums package.
  10. * <p>An ObjectFactory allows you to programatically
  11. * construct new instances of the Java representation
  12. * for XML content. The Java representation of XML
  13. * content can consist of schema derived interfaces
  14. * and classes representing the binding of schema
  15. * type definitions, element declarations and model
  16. * groups. Factory methods for each of these are
  17. * provided in this class.
  18. */
  19. @XmlRegistry
  20. public class ObjectFactory {
  21. private final static QName _IsUamsValidUserByPhoneAndUserCode_QNAME = new QName("http://uums.service.uums.dhcc.com.cn/", "isUamsValidUserByPhoneAndUserCode");
  22. private final static QName _ServiceException_QNAME = new QName("http://uums.service.uums.dhcc.com.cn/", "ServiceException");
  23. /**
  24. * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: cn.com.dhcc.uums.service.uums
  25. */
  26. public ObjectFactory() {
  27. }
  28. /**
  29. * Create an instance of {@link ServiceException }
  30. */
  31. public ServiceException createServiceException() {
  32. return new ServiceException();
  33. }
  34. /**
  35. * Create an instance of {@link RoleInfo }
  36. */
  37. public RoleInfo createRoleInfo() {
  38. return new RoleInfo();
  39. }
  40. /**
  41. * Create an instance of {@link UserExtInfo }
  42. */
  43. public UserExtInfo createUserExtInfo() {
  44. return new UserExtInfo();
  45. }
  46. /**
  47. * Create an instance of {@link JAXBElement }{@code <}{@link IsUamsValidUserByPhoneAndUserCode }{@code >}}
  48. */
  49. @XmlElementDecl(namespace = "http://uums.service.uums.dhcc.com.cn/", name = "isUamsValidUserByPhoneAndUserCode")
  50. public JAXBElement<IsUamsValidUserByPhoneAndUserCode> createIsUamsValidUserByPhoneAndUserCode(IsUamsValidUserByPhoneAndUserCode value) {
  51. return new JAXBElement<IsUamsValidUserByPhoneAndUserCode>(_IsUamsValidUserByPhoneAndUserCode_QNAME, IsUamsValidUserByPhoneAndUserCode.class, null, value);
  52. }
  53. /**
  54. * Create an instance of {@link JAXBElement }{@code <}{@link ServiceException }{@code >}}
  55. */
  56. @XmlElementDecl(namespace = "http://uums.service.uums.dhcc.com.cn/", name = "ServiceException")
  57. public JAXBElement<ServiceException> createServiceException(ServiceException value) {
  58. return new JAXBElement<ServiceException>(_ServiceException_QNAME, ServiceException.class, null, value);
  59. }
  60. }