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