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