package cn.com.goldenwater.dcproj.webService.login; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; /** * This class was generated by Apache CXF 3.1.17 * 2018-10-22T18:30:24.913+08:00 * Generated source version: 3.1.17 */ @WebService(targetNamespace = "http://uums.service.uums.dhcc.com.cn/", name = "UumsService") @XmlSeeAlso({ObjectFactory.class}) public interface UumsService { @WebMethod @RequestWrapper(localName = "isUamsValidUserByPhoneAndUserCode", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.IsUamsValidUserByPhoneAndUserCode") @ResponseWrapper(localName = "isUamsValidUserByPhoneAndUserCodeResponse", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.IsUamsValidUserByPhoneAndUserCodeResponse") @WebResult(name = "return", targetNamespace = "") public UserExtInfo isUamsValidUserByPhoneAndUserCode( @WebParam(name = "arg0", targetNamespace = "") String arg0, @WebParam(name = "arg1", targetNamespace = "") String arg1 ) throws ServiceException_Exception; @WebMethod @RequestWrapper(localName = "changePassword", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.changePassword") @ResponseWrapper(localName = "changePasswordResponse", targetNamespace = "http://uums.service.uums.dhcc.com.cn/", className = "cn.com.dhcc.uums.service.uums.changePasswordResponse") @WebResult(name = "return", targetNamespace = "") public Integer changePassword( @WebParam(name = "arg0", targetNamespace = "") String arg0, @WebParam(name = "arg1", targetNamespace = "") String arg1, @WebParam(name = "arg2", targetNamespace = "") String arg2 ) throws ServiceException_Exception; }