initparam.java
来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 69 行
JAVA
69 行
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 + =
减小字号Ctrl + -
显示快捷键?