1 | String getRandomPath() {↵ | | 1 | String getTest() {↵
|
2 | return getPropertyAsString(RANDOM_PATH);↵ | | 2 | return getPropertyAsString(TEST);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /***************************************************************************↵
|
5 | * set the text for the message↵ | | 5 | * Sets the ↵
|
6 | * ↵ | | |
|
7 | * @param message↵ | | |
|
8 | ↵ | | 6 | attributes of the LdapConfig object↵
|
| | | 7 | * ↵
|
| | | 8 | * @param newAttrs↵
|
| | | 9 | * The new attributes value↵
|
9 | */↵ | | 10 | **************************************************************************/↵
|
10 | public void setTextMessage(String message) {↵ | | 11 | public void setAttrs(String newAttrs) {↵
|
11 | setProperty(TEXT_MSG, message);↵ | | 12 | this.setProperty(↵
|
12 | }↵ | | |
|
|
13 | /↵ | | 13 | ATTRIBS, newAttrs);↵
|
| | | 14 | }↵
|
|
14 | **↵ | | 15 | /***************************************************************************↵
|
15 | * return the text for the message↵ | | 16 | * Gets the ↵
|
16 | * ↵ | | |
|
17 | ↵ | | 17 | attributes of the LDAPSampler object↵
|
| | | 18 | * ↵
|
| | | 19 | * @return The attributes↵
|
18 | */↵ | | 20 | **************************************************************************/↵
|
19 | public String getTextMessage() {↵ | | 21 | public String getAttrs() {↵
|
20 | return getPropertyAsString(TEXT_MSG);↵ | | 22 | return getPropertyAsString(ATTRIBS);↵
|
21 | } | | 23 | }
|