您的位置:首页 > 编程语言 > Java开发

javaWeb服务详解【客户端调用】(含源代码,测试通过,注释) ——DeptService层

2017-06-02 17:13 627 查看
package org.service;

import javax.jws.WebMethod;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;

import org.entity.Dept;

/**
* This class was generated by Apache CXF 2.7.18
* 2017-06-02T13:18:24.417+08:00
* Generated source version: 2.7.18
*
*/
@WebService(targetNamespace = "http://www.xiongxiong.cn.ws/dept", name = "IDeptService")
public interface IDeptService {

@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDepts", targetNamespace = "http://www.xiongxiong.cn.ws/dept", className = "ws.cn.xiongxiong.dept.GetDepts")
@WebMethod
@ResponseWrapper(localName = "getDeptsResponse", targetNamespace = "http://www.xiongxiong.cn.ws/dept", className = "ws.cn.xiongxiong.dept.GetDeptsResponse")
public java.util.List<Dept> getDepts();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐