org.apache.jmeter.ejb.jndi.config
public class: LookupConfig [javadoc |
source]
java.lang.Object
org.apache.jmeter.config.AbstractConfigElement
org.apache.jmeter.ejb.jndi.config.LookupConfig
All Implemented Interfaces:
Serializable
Stores the configuration for JNDI lookup
- author:
Khor
- Soon Hin
Created 2001 Dec 19
- version:
$
- Revision: 1.3 $ Last Updated: $Date: 2004/02/13 02:40:54 $
Field Summary |
---|
protected static final String | LOOKUP_NAME | |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.jmeter.ejb.jndi.config.LookupConfig Detail: |
public void addConfigElement(ConfigElement config) {
}
|
public Object clone() {
LookupConfig newConfig = new LookupConfig();
configureClone(newConfig);
return newConfig;
}
|
public String getClassLabel() {
return JMeterUtils.getResString("jndi_lookup_title");
}
|
public Class getGuiClass() {
return org.apache.jmeter.ejb.jndi.config.gui.LookupConfigGui.class;
}
|
public String getLookupName() {
String string = (String)this.getProperty(LOOKUP_NAME);
if(catClass.isDebugEnabled())
{
catClass.debug("getLookupName1 : lookup name - " + string);
}
return string;
}
|
public void setLookupName(String string) {
if(catClass.isDebugEnabled())
{
catClass.debug("setLookupName1 : lookup name - " + string);
}
this.putProperty(LOOKUP_NAME, string);
}
|