1 | String getName() {↵ | | 1 | String getAttrs() {↵
|
2 | return getPropertyAsString(ARG_NAME);↵ | | 2 | return getPropertyAsString(ATTRIBS);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the value of the Argument.↵ | | 5 | *************************************************************************↵
|
| | | 6 | * Sets the Base Entry DN attribute of the LDAPSampler object↵
|
6 | * ↵ | | 7 | * ↵
|
7 | * @param newValue↵ | | 8 | * @param newbaseentry↵
|
8 | * the new value↵ | | 9 | * The new ↵
|
9 | ↵ | | 10 | Base entry DN value↵
|
10 | */↵ | | 11 | **************************************************************************/↵
|
11 | public void setValue(String newValue) {↵ | | 12 | public void setBaseEntryDN(String newbaseentry) {↵
|
12 | setProperty(new StringProperty(VALUE, newValue));↵ | | 13 | setProperty(new StringProperty(↵
|
13 | }↵ | | |
|
|
14 | /**↵ | | |
|
15 | * Gets the value of the Argument↵ | | 14 | BASE_ENTRY_DN, newbaseentry));↵
|
| | | 15 | }↵
|
|
| | | 16 | /***************************************************************************↵
|
16 | object.↵ | | 17 | * Gets the BaseEntryDN attribute of the LDAPSampler object↵
|
17 | * ↵ | | 18 | * ↵
|
18 | * @return the attribute's value↵ | | 19 | * @return The ↵
|
19 | ↵ | | 20 | Base entry DN value↵
|
20 | */↵ | | 21 | **************************************************************************/↵
|
21 | public String getValue() {↵ | | 22 | public String getBaseEntryDN() {↵
|
22 | return getPropertyAsString(VALUE);↵ | | 23 | return getPropertyAsString(BASE_ENTRY_DN);↵
|
23 | | | 24 |
|