1 | String getBaseEntryDN() {↵ | | 1 | String getBaseEntryDN() {↵
|
2 | return getPropertyAsString(BASE_ENTRY_DN);↵ | | 2 | return getPropertyAsString(BASE_ENTRY_DN);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /***************************************************************************↵
|
5 | * Sets the Arguments attribute of the LdapConfig object. This will collect↵ | | 5 | * Sets the Arguments attribute of the LdapConfig object This will collect↵
|
6 | * values from the table for user defined test case.↵ | | 6 | * values from the table for user defined test case↵
|
7 | * ↵ | | 7 | * ↵
|
8 | * @param value↵ | | 8 | * @param value↵
|
9 | * the arguments↵ | | 9 | * The arguments↵
|
10 | */↵ | | 10 | **************************************************************************/↵
|
11 | public void setArguments(Arguments value) {↵ | | 11 | public void setArguments(Arguments value) {↵
|
12 | setProperty(new TestElementProperty(ARGUMENTS, value));↵ | | 12 | setProperty(new TestElementProperty(ARGUMENTS, value));↵
|
13 | }↵ | | 13 | }↵
|
|
14 | /**↵ | | 14 | /***************************************************************************↵
|
15 | * Gets the Arguments attribute of the LdapConfig object.↵ | | 15 | * Gets the Arguments attribute of the LdapConfig object↵
|
16 | * ↵ | | 16 | * ↵
|
17 | * @return the arguments. User defined test case.↵ | | 17 | * @return The arguments user defined test case↵
|
18 | */↵ | | 18 | **************************************************************************/↵
|
19 | public Arguments getArguments() {↵ | | 19 | public Arguments getArguments() {↵
|
20 | return (Arguments) getProperty(ARGUMENTS).getObjectValue();↵ | | 20 | return (Arguments) getProperty(ARGUMENTS).getObjectValue();↵
|
21 | | | 21 |
|