📄 initparam.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 + -