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

📄 accountoperatewebservice.java

📁 SOA
💻 JAVA
字号:

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);

}

⌨️ 快捷键说明

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