2322a92b7e2a28d98ef11282ec12fb43e2984ff3.svn-base 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.goldenwater.dcproj.webService.login;
  2. import javax.jws.WebMethod;
  3. import javax.jws.WebParam;
  4. import javax.jws.WebResult;
  5. import javax.jws.WebService;
  6. import javax.xml.bind.annotation.XmlSeeAlso;
  7. import javax.xml.ws.RequestWrapper;
  8. import javax.xml.ws.ResponseWrapper;
  9. /**
  10. * This class was generated by Apache CXF 3.1.17
  11. * 2018-10-22T18:30:24.913+08:00
  12. * Generated source version: 3.1.17
  13. */
  14. @WebService(targetNamespace = "http://uums.service.uums.dhcc.com.cn/", name = "UumsService")
  15. @XmlSeeAlso({ObjectFactory.class})
  16. public interface UumsService {
  17. @WebMethod
  18. @RequestWrapper(localName = "isUamsValidUserByPhoneAndUserCode", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.IsUamsValidUserByPhoneAndUserCode")
  19. @ResponseWrapper(localName = "isUamsValidUserByPhoneAndUserCodeResponse", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.IsUamsValidUserByPhoneAndUserCodeResponse")
  20. @WebResult(name = "return", targetNamespace = "")
  21. public UserExtInfo isUamsValidUserByPhoneAndUserCode(
  22. @WebParam(name = "arg0", targetNamespace = "")
  23. String arg0,
  24. @WebParam(name = "arg1", targetNamespace = "")
  25. String arg1
  26. ) throws ServiceException_Exception;
  27. @WebMethod
  28. @RequestWrapper(localName = "changePassword", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.changePassword")
  29. @ResponseWrapper(localName = "changePasswordResponse", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.changePasswordResponse")
  30. @WebResult(name = "return", targetNamespace = "")
  31. public Integer changePassword(
  32. @WebParam(name = "arg0", targetNamespace = "")
  33. String arg0,
  34. @WebParam(name = "arg1", targetNamespace = "")
  35. String arg1,
  36. @WebParam(name = "arg2", targetNamespace = "")
  37. String arg2
  38. ) throws ServiceException_Exception;
  39. }