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