1 | void setName(String name) {↵ | | 1 | void setAttrs(String newAttrs) {↵
|
2 | setProperty(TestElement.NAME, name);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
| | | 3 | ATTRIBS, newAttrs);↵
|
| | | 4 | }↵
|
|
| | | 5 | /***************************************************************************↵
|
| | | 6 | * Gets the attributes of the LDAPSampler object↵
|
| | | 7 | * ↵
|
| | | 8 | * @return The attributes↵
|
| | | 9 | **************************************************************************/↵
|
4 | public String getName() {↵ | | 10 | public String getAttrs() {↵
|
5 | return getPropertyAsString(TestElement.NAME);↵ | | 11 | return getPropertyAsString(↵
|
6 | }↵ | | |
|
| | | 12 | ATTRIBS);↵
|
| | | 13 | }↵
|
|
| | | 14 | /***************************************************************************↵
|
| | | 15 | * Sets the Base Entry DN attribute of the LDAPSampler object↵
|
| | | 16 | * ↵
|
| | | 17 | * @param newbaseentry↵
|
| | | 18 | * The new Base entry DN value↵
|
| | | 19 | **************************************************************************/↵
|
7 | public void setComment(String comment){↵ | | 20 | public void setBaseEntryDN(String newbaseentry) {↵
|
8 | setProperty(new StringProperty(TestElement.COMMENTS, comment));↵ | | 21 | setProperty(new StringProperty(BASE_ENTRY_DN, newbaseentry));↵
|
9 | } | | 22 | }
|