⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 powercardws.java

📁 Web Service Implementation from oracle database to consume financial services
💻 JAVA
字号:

package pwc.ws;

import java.util.List;
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 the JAX-WS RI.
 * JAX-WS RI 2.1.3-b02-
 * Generated source version: 2.1
 * 
 */
@WebService(name = "PowerCARDWS", targetNamespace = "http://powercard.webservice.com")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface PowerCARDWS {


    /**
     * 
     * @param password
     * @param serviceArgs
     * @param login
     * @param serviceName
     * @return
     *     returns java.lang.String
     */
    @WebMethod
    @WebResult(name = "result", targetNamespace = "")
    @RequestWrapper(localName = "pwcService", targetNamespace = "http://powercard.webservice.com", className = "pwc.ws.PwcService")
    @ResponseWrapper(localName = "pwcServiceResponse", targetNamespace = "http://powercard.webservice.com", className = "pwc.ws.PwcServiceResponse")
    public String pwcService(
        @WebParam(name = "login", targetNamespace = "")
        String login,
        @WebParam(name = "password", targetNamespace = "")
        String password,
        @WebParam(name = "ServiceName", targetNamespace = "")
        String serviceName,
        @WebParam(name = "serviceArgs", targetNamespace = "")
        List<String> serviceArgs);

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -