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