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

📄 initparam.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.annotations.soap;import java.io.Serializable;/** * Represents a common implementation of the {@link SOAPMessageHandler} initialization parameter. * * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> */public class InitParam implements Serializable{    private String name;    private String value;    /**     * Initializes a new instance of the <code>InitParam</code> class.     *     * @param name  the name     * @param value the value     */    public InitParam(String name, String value)    {        this.name = name;        this.value = value;    }    /**     * Returns the name of the initialization parameter.     *     * @return the parameter name.     */    public String getName()    {        return name;    }    /**     * Sets the name of the initialization parameter.     *     * @param name the parameter name.     */    public void setName(String name)    {        this.name = name;    }    /**     * Returns the value of the initialization parameter.     *     * @return the parameter value.     */    public String getValue()    {        return value;    }    /**     * Sets the value of the initialization parameter.     *     * @param value the parameter name.     */    public void setValue(String value)    {        this.value = value;    }}

⌨️ 快捷键说明

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