| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package cn.com.goldenwater.dcproj.webService.login;
- 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 cn.com.dhcc.uums.service.uums 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 _IsUamsValidUserByPhoneAndUserCode_QNAME = new QName("http://uums.service.uums.dhcc.com.cn/", "isUamsValidUserByPhoneAndUserCode");
- private final static QName _ServiceException_QNAME = new QName("http://uums.service.uums.dhcc.com.cn/", "ServiceException");
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: cn.com.dhcc.uums.service.uums
- */
- public ObjectFactory() {
- }
- /**
- * Create an instance of {@link ServiceException }
- */
- public ServiceException createServiceException() {
- return new ServiceException();
- }
- /**
- * Create an instance of {@link RoleInfo }
- */
- public RoleInfo createRoleInfo() {
- return new RoleInfo();
- }
- /**
- * Create an instance of {@link UserExtInfo }
- */
- public UserExtInfo createUserExtInfo() {
- return new UserExtInfo();
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link IsUamsValidUserByPhoneAndUserCode }{@code >}}
- */
- @XmlElementDecl(namespace = "http://uums.service.uums.dhcc.com.cn/", name = "isUamsValidUserByPhoneAndUserCode")
- public JAXBElement<IsUamsValidUserByPhoneAndUserCode> createIsUamsValidUserByPhoneAndUserCode(IsUamsValidUserByPhoneAndUserCode value) {
- return new JAXBElement<IsUamsValidUserByPhoneAndUserCode>(_IsUamsValidUserByPhoneAndUserCode_QNAME, IsUamsValidUserByPhoneAndUserCode.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ServiceException }{@code >}}
- */
- @XmlElementDecl(namespace = "http://uums.service.uums.dhcc.com.cn/", name = "ServiceException")
- public JAXBElement<ServiceException> createServiceException(ServiceException value) {
- return new JAXBElement<ServiceException>(_ServiceException_QNAME, ServiceException.class, null, value);
- }
- }
|