1 | void setClassname(String classname)↵ | | 1 | void set↵
|
2 | {↵ | | |
|
3 | setProperty(CLASSNAME, classname);↵ | | |
|
4 | ↵ | | 2 | Rootdn(String newRootdn) {↵
|
| | | 3 | this.setProperty(ROOTDN, newRootdn);↵
|
5 | }↵ | | 4 | }↵
|
|
6 | /**↵ | | 5 | /**↵
|
7 | * Gets the Classname attribute of the JavaConfig object↵ | | 6 | * Gets the Rootdn attribute of the LDAPSampler object.↵
|
8 | *↵ | | 7 | * ↵
|
9 | * @return the Classname value↵ | | 8 | * @return the Rootdn value↵
|
10 | */↵ | | 9 | */↵
|
11 | public String getClassname()↵ | | 10 | public String get↵
|
12 | {↵ | | |
|
13 | return getPropertyAsString(CLASSNAME);↵ | | |
|
14 | }↵ | | |
|
15 | ↵ | | |
|
16 | ↵ | | 11 | Rootdn() {↵
|
| | | 12 | return getPropertyAsString(ROOTDN);↵
|
| | | 13 | }↵
|
|
17 | /**↵ | | 14 | /**↵
|
18 | * Set the string label used to create an instance of the↵ | | 15 | * Sets the ↵
|
19 | * test with the string constructor.↵ | | |
|
20 | * @param constr↵ | | |
|
21 | ↵ | | 16 | Test attribute of the LdapConfig object.↵
|
| | | 17 | * ↵
|
| | | 18 | * @param newTest↵
|
| | | 19 | * the new test value(Add,Modify,Delete and search)↵
|
22 | */↵ | | 20 | */↵
|
23 | public void setConstructorString(String constr)↵ | | 21 | public void setTest(String ↵
|
24 | {↵ | | |
|
25 | setProperty(CONSTRUCTORSTRING,con↵ | | 22 | newTest) {↵
|
26 | str);↵ | | 23 | this.setProperty(TEST, newTest);↵
|
27 | | | 24 |
|