1 | String getPort() {↵ | | 1 | String get↵
|
2 | return getPropertyAsString(PORT);↵ | | |
|
3 | }↵ | | |
|
|
4 | /***************************************************************************↵ | | |
|
5 | ↵ | | 2 | Classname()↵
|
| | | 3 | {↵
|
| | | 4 | return getPropertyAsString(CLASSNAME);↵
|
| | | 5 | }↵
|
| | | 6 | ↵
|
| | | 7 | /**↵
|
6 | * Sets the Rootdn attribute of the LDAPSampler object↵ | | 8 | * Set the ↵
|
7 | * ↵ | | |
|
8 | * @param newRootdn ↵ | | |
|
9 | * The new rootdn value↵ | | |
|
10 | **************************************************************************/↵ | | |
|
11 | public void setRootdn(String newRootdn) {↵ | | |
|
12 | this.setProperty(ROOTDN, newRootdn);↵ | | |
|
13 | }↵ | | |
|
|
14 | /***************************************************************************↵ | | |
|
15 | ↵ | | 9 | string label used to create an instance of the↵
|
| | | 10 | * test with the string constructor.↵
|
| | | 11 | * @param constr↵
|
| | | 12 | */↵
|
| | | 13 | public void setConstructorString(String constr)↵
|
| | | 14 | {↵
|
| | | 15 | setProperty(CONSTRUCTORSTRING,constr);↵
|
| | | 16 | }↵
|
| | | 17 | ↵
|
| | | 18 | /**↵
|
16 | * Gets the Rootdn attribute of the LDAPSampler object↵ | | 19 | * get the ↵
|
17 | * ↵ | | |
|
18 | * @return The Rootdn value↵ | | |
|
19 | **************************************************************************/↵ | | |
|
20 | public String getRootdn() {↵ | | |
|
21 | ↵ | | 20 | string passed to the string constructor↵
|
| | | 21 | */↵
|
| | | 22 | public String getConstructorString()↵
|
| | | 23 | {↵
|
22 | return getPropertyAsString(ROOTDN);↵ | | 24 | return getPropertyAsString(↵
|
23 | | | 25 | CONSTRUCTORSTRING);↵
|
| | | 26 |
|