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