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 | public String getServername() {↵ | | 18 | public String getServername() {↵
|
19 | return getPropertyAsString(SERVERNAME);↵ | | 19 | return getPropertyAsString(SERVERNAME);↵
|
20 | }↵ | | 20 | }↵
|
|
21 | /**↵ | | 21 | /***************************************************************************↵
|
22 | * Gets the Port attribute of the LDAPSampler object.↵ | | 22 | * Gets the Port attribute of the LDAPSampler object↵
|
23 | * ↵ | | 23 | * ↵
|
24 | * @return the Port value↵ | | 24 | * @return The Port value↵
|
25 | */↵ | | 25 | **************************************************************************/↵
|
|
26 | public String getPort() {↵ | | 26 | public String getPort() {↵
|
27 | return getPropertyAsString(PORT);↵ | | 27 | return getPropertyAsString(PORT);↵
|
28 | } | | 28 | }
|