1 | String getPort() {↵ | | 1 | String getConnectionFactory() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(CONN_FACTORY);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object.↵ | | 5 | * set the ↵
|
6 | * ↵ | | |
|
7 | * @param newRootdn↵ | | |
|
8 | * the new rootdn value↵ | | 6 | topic↵
|
| | | 7 | * ↵
|
| | | 8 | * @param topic↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setRootdn(String newRootdn) {↵ | | 10 | public void setTopic(String topic) {↵
|
11 | this.setProperty(ROOTDN, newRootdn);↵ | | 11 | setProperty(TOPIC, topic);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | 14 | * return the topic used for the benchmark↵
|
15 | * ↵ | | 15 | * ↵
|
16 | * @return the Rootdn value↵ | | 16 | * @return the topic↵
|
17 | */↵ | | 17 | */↵
|
18 | public String getRootdn() {↵ | | 18 | public String getTopic() {↵
|
19 | return getPropertyAsString(ROOTDN);↵ | | 19 | return getPropertyAsString(TOPIC);↵
|
20 | | | 20 |
|