Package org.apache.jmeter.config
Class LoginConfig
- java.lang.Object
-
- org.apache.jmeter.testelement.AbstractTestElement
-
- org.apache.jmeter.config.ConfigTestElement
-
- org.apache.jmeter.config.LoginConfig
-
- All Implemented Interfaces:
Serializable
,Cloneable
,ConfigElement
,Searchable
,TestElement
public class LoginConfig extends ConfigTestElement implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.jmeter.config.ConfigTestElement
PASSWORD, USERNAME
-
Fields inherited from interface org.apache.jmeter.testelement.TestElement
COMMENTS, ENABLED, GUI_CLASS, NAME, TEST_CLASS
-
-
Constructor Summary
Constructors Constructor Description LoginConfig()
Constructor for the LoginConfig object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPassword()
Gets the Password attribute of the LoginConfig object.String
getUsername()
Gets the Username attribute of the LoginConfig object.void
setPassword(String password)
Sets the Password attribute of the LoginConfig object.void
setUsername(String username)
Sets the Username attribute of the LoginConfig object.String
toString()
-
Methods inherited from class org.apache.jmeter.config.ConfigTestElement
addConfigElement, addTestElement, expectsModification
-
Methods inherited from class org.apache.jmeter.testelement.AbstractTestElement
addPropertiesValues, addProperty, addProperty, canRemove, clear, clearTemporary, clearTestElementChildren, clone, emptyTemporary, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse, traverseCollection, traverseMap, traverseProperty
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.jmeter.config.ConfigElement
clone
-
-
-
-
Method Detail
-
setUsername
public void setUsername(String username)
Sets the Username attribute of the LoginConfig object.- Parameters:
username
- the new Username value
-
setPassword
public void setPassword(String password)
Sets the Password attribute of the LoginConfig object.- Parameters:
password
- the new Password value
-
getUsername
public String getUsername()
Gets the Username attribute of the LoginConfig object.- Returns:
- the Username value
-
getPassword
public String getPassword()
Gets the Password attribute of the LoginConfig object.- Returns:
- the Password value
-
-