1 | String getRootdn() {↵ | | 1 | String getMethod() {↵
|
2 | return getPropertyAsString(ROOTDN);↵ | | 2 | return getPropertyAsString(METHOD);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Sets the Test attribute of the LdapConfig object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param newTest↵ | | |
|
8 | * the new test value(Add,Modify,Delete and search)↵ | | |
|
9 | */↵ | | |
|
10 | public void setTest(String newTest) {↵ | | 5 | public void setContentEncoding(String value) {↵
|
11 | this.setProperty(TEST, newTest);↵ | | 6 | setProperty(↵
|
12 | }↵ | | |
|
|
13 | /**↵ | | |
|
14 | * Gets the test attribute of the LDAPSampler object.↵ | | |
|
15 | * ↵ | | |
|
16 | * @return the test value (Add, Modify, Delete and search)↵ | | |
|
17 | */↵ | | 7 | CONTENT_ENCODING, value);↵
|
| | | 8 | }↵
|
|
18 | public String getTest() {↵ | | 9 | public String getContentEncoding() {↵
|
19 | return getPropertyAsString(TEST);↵ | | 10 | return getPropertyAsString(CONTENT_ENCODING);↵
|
20 | } | | 11 | }
|