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

📄 methodbean.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.spring.config;import java.util.List;import java.util.Map;/** * @org.apache.xbean.XBean element="method" */public class MethodBean{    private String operationName;    private String name;    private List parameters;    private Map properties;    private boolean exclude;    private String mep;    private String soapAction;    private ParameterBean returnType;        public String getSoapAction()    {        return soapAction;    }    public void setSoapAction(String soapAction)    {        this.soapAction = soapAction;    }    public String getMep()    {        return mep;    }    public void setMep(String mep)    {        this.mep = mep;    }    public boolean isExclude()    {        return exclude;    }    public void setExclude(boolean exclude)    {        this.exclude = exclude;    }    public String getName()    {        return name;    }    public void setName(String name)    {        this.name = name;    }    public String getOperationName()    {        return operationName;    }    public void setOperationName(String operationName)    {        this.operationName = operationName;    }    public Map getProperties()    {        return properties;    }    public void setProperties(Map properties)    {        this.properties = properties;    }    /**     * @org.apache.xbean.Flat     * @return     */    public ParameterBean getReturnType()    {        return returnType;    }        public void setReturnType(ParameterBean returnType)    {        this.returnType = returnType;    }    /**     * @org.apache.xbean.FlatCollection childElement="parameter"     * @return     */    public List getParameters()    {        return parameters;    }    public void setParameters(List parameters)    {        this.parameters = parameters;    }}

⌨️ 快捷键说明

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