1 | String getValue() {↵ | | 1 | String getAttrs() {↵
|
2 | return getPropertyAsString(VALUE);↵ | | 2 | return getPropertyAsString(ATTRIBS);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the opcode of the Argument.↵ | | 5 | *************************************************************************↵
|
| | | 6 | * Sets the Base Entry DN attribute of the LDAPSampler object↵
|
6 | * ↵ | | 7 | * ↵
|
7 | * @param newOpcode↵ | | 8 | * @param newbaseentry↵
|
8 | * the new value↵ | | 9 | * The new ↵
|
9 | ↵ | | 10 | Base entry DN value↵
|
10 | */↵ | | 11 | **************************************************************************/↵
|
11 | public void setOpcode(String newOpcode) {↵ | | 12 | public void setBaseEntryDN(String newbaseentry) {↵
|
12 | setProperty(new StringProperty(OPCODE, newOpcode));↵ | | 13 | setProperty(new StringProperty(↵
|
13 | }↵ | | |
|
|
14 | /**↵ | | |
|
15 | * Gets the opcode 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 getOpcode() {↵ | | 22 | public String getBaseEntryDN() {↵
|
22 | return getPropertyAsString(OPCODE);↵ | | 23 | return getPropertyAsString(BASE_ENTRY_DN);↵
|
23 | } | | 24 | }
|