1 | String getPort() {↵ | | 1 | String getMethod() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(METHOD);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param newRootdn↵ | | |
|
8 | * the new rootdn value↵ | | |
|
9 | */↵ | | |
|
10 | public void setRootdn(String newRootdn) {↵ | | 5 | public void setContentEncoding(String value) {↵
|
11 | this.setProperty(ROOTDN, newRootdn);↵ | | 6 | setProperty(↵
|
12 | }↵ | | |
|
|
13 | /**↵ | | |
|
14 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | |
|
15 | * ↵ | | |
|
16 | * @return the Rootdn value↵ | | |
|
17 | */↵ | | 7 | CONTENT_ENCODING, value);↵
|
| | | 8 | }↵
|
|
18 | public String getRootdn() {↵ | | 9 | public String getContentEncoding() {↵
|
19 | return getPropertyAsString(ROOTDN);↵ | | 10 | return getPropertyAsString(CONTENT_ENCODING);↵
|
20 | } | | 11 | }
|