1 | void setTest(String newTest) {↵ | | 1 | void setMessageChoice(String choice) {↵
|
2 | this.setProperty(TEST, newTest);↵ | | 2 | setProperty(MES↵
|
3 | }↵ | | |
|
|
4 | /*************************************************************************↵ | | 3 | SAGE_CHOICE, choice);↵
|
| | | 4 | }↵
|
|
5 | **↵ | | 5 | /**↵
|
6 | * Gets the test attribute of the LDAPSampler object↵ | | 6 | * return the ↵
|
7 | * ↵ | | |
|
8 | * @return The test value (Add,Modify,Delete and search)↵ | | |
|
9 | *************************************************************************↵ | | 7 | source of the message↵
|
| | | 8 | * ↵
|
10 | */↵ | | 9 | */↵
|
11 | public String getTest() {↵ | | 10 | public String getMessageChoice() {↵
|
12 | return getPropertyAsString(TEST);↵ | | 11 | return getPropertyAsString(MESSAGE_CHOICE);↵
|
13 | }↵ | | 12 | }↵
|
|
14 | /***************************************************************************↵ | | 13 | /**↵
|
15 | * Sets the attributes of the LdapConfig object↵ | | 14 | * set the ↵
|
16 | * ↵ | | |
|
17 | * @param newAttrs↵ | | |
|
18 | * The new attributes value↵ | | |
|
19 | *************************************************************************↵ | | 15 | input file for the publisher↵
|
| | | 16 | * ↵
|
| | | 17 | * @param file↵
|
20 | */↵ | | 18 | */↵
|
21 | public void setAttrs(String newAttrs) {↵ | | 19 | public void setInputFile(String file) {↵
|
22 | this.setProperty(ATTRIBS, newAttrs);↵ | | 20 | setProperty(↵
|
23 | }↵ | | |
|
|
24 | /*************************************************************************↵ | | 21 | INPUT_FILE, file);↵
|
| | | 22 | }↵
|
|
25 | **↵ | | 23 | /**↵
|
26 | * Gets the attributes of the LDAPSampler object↵ | | 24 | * return the pat↵
|
27 | * ↵ | | |
|
28 | * @return The attributes↵ | | |
|
29 | *************************************************************************↵ | | 25 | h of the input file↵
|
| | | 26 | * ↵
|
30 | */↵ | | 27 | */↵
|
31 | public String getAttrs() {↵ | | 28 | public String getInputFile() {↵
|
32 | return getPropertyAsString(ATTRIBS);↵ | | 29 | return getPropertyAsString(INPUT_FILE);↵
|
33 | | | 30 |
|