bbtforumserviceporttype.java
来自「spring企业级开发电子书籍.......」· Java 代码 · 共 22 行
JAVA
22 行
package com.baobaotao.xfire.client;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
@WebService(name = "BbtForumServicePortType", targetNamespace = "http://www.baobaotao.com")
@SOAPBinding(use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public interface BbtForumServicePortType {
@WebMethod(operationName = "getRefinedTopicCount", action = "")
@WebResult(name = "out", targetNamespace = "http://www.baobaotao.com")
public int getRefinedTopicCount(
@WebParam(name = "in0", targetNamespace = "http://www.baobaotao.com")
int in0);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?