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