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