helloservicesoapbindingimpl.java

来自「精通Jboss——Ejb和Web Services开发精解的随书源代码」· Java 代码 · 共 14 行

JAVA
14
字号
/**
 * HelloServiceSoapBindingImpl.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package com.liuyang.axis.server;

public class HelloServiceSoapBindingImpl implements com.liuyang.axis.server.HelloService{
    public java.lang.String sayHello(java.lang.String name) throws java.rmi.RemoteException {
        return "HelloService say hello to "+name;
    }
}

⌨️ 快捷键说明

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