1 | void setServername(String servername) {↵ | | 1 | void setServername(String servername) {↵
|
2 | setProperty(new StringProperty(SERVERNAME, servername));↵ | | 2 | setProperty(new StringProperty(SERVERNAME, servername));↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /***************************************************************************↵ | | 4 | /**↵
|
5 | * Sets the Port attribute of the ServerConfig object↵ | | 5 | * Sets the Port attribute of the ServerConfig object.↵
|
6 | * ↵ | | 6 | * ↵
|
7 | * @param port↵ | | 7 | * @param port↵
|
8 | * The new Port value↵ | | 8 | * the new Port value↵
|
9 | **************************************************************************/↵ | | 9 | */↵
|
10 | public void setPort(String port) {↵ | | 10 | public void setPort(String port) {↵
|
11 | setProperty(new StringProperty(PORT, port));↵ | | 11 | setProperty(new StringProperty(PORT, port));↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /***************************************************************************↵ | | 13 | /**↵
|
14 | * Gets the servername attribute of the LDAPSampler object↵ | | 14 | * Gets the servername attribute of the LDAPSampler object.↵
|
15 | * ↵ | | 15 | * ↵
|
16 | * @return The Servername value↵ | | 16 | * @return the Servername value↵
|
17 | **************************************************************************/↵ | | 17 | *↵
|
| | | 18 | /↵
|
18 | public String getServername() {↵ | | 19 | public String getServername() {↵
|
19 | return getPropertyAsString(SERVERNAME);↵ | | 20 | return getPropertyAsString(SERVERNAME);↵
|
20 | }↵ | | 21 | }↵
|
|
21 | /***************************************************************************↵ | | 22 | /**↵
|
22 | * Gets the Port attribute of the LDAPSampler object↵ | | 23 | * Gets the Port attribute of the LDAPSampler object.↵
|
23 | * ↵ | | 24 | * ↵
|
24 | * @return The Port value↵ | | 25 | * @return the Port value↵
|
25 | **************************************************************************/↵ | | 26 | *↵
|
| | | 27 | /↵
|
26 | public String getPort() {↵ | | 28 | public String getPort() {↵
|
27 | return getPropertyAsString(PORT);↵ | | 29 | return getPropertyAsString(PORT);↵
|
28 | }↵ | | 30 | }↵
|
|
29 | /***************************************************************************↵ | | 31 | /**↵
|
30 | * Sets the Rootdn attribute of the LDAPSampler object↵ | | 32 | * Sets the Rootdn attribute of the LDAPSampler object.↵
|
31 | * ↵ | | 33 | * ↵
|
32 | * @param newRootdn ↵ | | 34 | * @param newRootdn↵
|
33 | * The new rootdn value↵ | | 35 | * the new rootdn value↵
|
34 | **************************************************************************/↵ | | 36 | */↵
|
35 | public void setRootdn(String newRootdn) {↵ | | 37 | public void setRootdn(String newRootdn) {↵
|
36 | this.setProperty(ROOTDN, newRootdn);↵ | | 38 | this.setProperty(ROOTDN, newRootdn);↵
|
37 | }↵ | | 39 | }↵
|
|
38 | /***************************************************************************↵ | | 40 | /**↵
|
39 | * Gets the Rootdn attribute of the LDAPSampler object↵ | | 41 | * Gets the Rootdn attribute of the LDAPSampler object.↵
|
40 | * ↵ | | 42 | * ↵
|
41 | * @return The Rootdn value↵ | | 43 | * @return the Rootdn value↵
|
42 | **************************************************************************/↵ | | 44 | */↵
|
43 | public String getRootdn() {↵ | | 45 | public String getRootdn() {↵
|
44 | return getPropertyAsString(ROOTDN);↵ | | 46 | return getPropertyAsString(ROOTDN);↵
|
45 | | | 47 |
|