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