?? accountoperatewebservice.java
字號(hào):
package com.sysu.service;
import java.util.List;
import javax.jws.Oneway;
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.1-hudson-749-SNAPSHOT
* Generated source version: 2.1
*
*/
@WebService(name = "AccountOperateWebService", targetNamespace = "http://service.sysu.com/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface AccountOperateWebService {
/**
*
* @param id
* @return
* returns com.sysu.service.Account
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "find", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.Find")
@ResponseWrapper(localName = "findResponse", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.FindResponse")
public Account find(
@WebParam(name = "id", targetNamespace = "")
Object id);
/**
*
* @param account
*/
@WebMethod
@Oneway
@RequestWrapper(localName = "remove", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.Remove")
public void remove(
@WebParam(name = "account", targetNamespace = "")
Account account);
/**
*
* @param account
*/
@WebMethod
@Oneway
@RequestWrapper(localName = "create", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.Create")
public void create(
@WebParam(name = "account", targetNamespace = "")
Account account);
/**
*
* @return
* returns java.util.List<com.sysu.service.Account>
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "findAll", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.FindAll")
@ResponseWrapper(localName = "findAllResponse", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.FindAllResponse")
public List<Account> findAll();
/**
*
* @param account
*/
@WebMethod
@Oneway
@RequestWrapper(localName = "edit", targetNamespace = "http://service.sysu.com/", className = "com.sysu.service.Edit")
public void edit(
@WebParam(name = "account", targetNamespace = "")
Account account);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -