1 | String getDefaultValue() {↵ | | 1 | String getRootdn() {↵
|
2 | return getPropertyAsString(DEFAULT);↵ | | 2 | return getPropertyAsString(ROOTDN);↵
|
3 | }↵ | | 3 | }↵
|
|
| | | 4 | /**↵
|
| | | 5 | * Sets the Test attribute of the LdapConfig object.↵
|
| | | 6 | * ↵
|
| | | 7 | * @param newTest↵
|
| | | 8 | * the new test value(Add,Modify,Delete and search)↵
|
| | | 9 | */↵
|
4 | public void setTemplate(String template) {↵ | | 10 | public void setTest(String newTest) {↵
|
5 | setProperty(TEMPLATE, template);↵ | | 11 | this.setProperty(TE↵
|
6 | }↵ | | |
|
| | | 12 | ST, newTest);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * Gets the test attribute of the LDAPSampler object.↵
|
| | | 16 | * ↵
|
| | | 17 | * @return the test value (Add, Modify, Delete and search)↵
|
| | | 18 | */↵
|
7 | public String getTemplate() {↵ | | 19 | public String getTest() {↵
|
8 | return getPropertyAsString(TEMPLATE);↵ | | 20 | return getPropertyAsString(TEST);↵
|
9 | | | 21 |
|