1 | String getScope() {↵ | | 1 | String getTimelim() {↵
|
2 | return getPropertyAsString(SCOPE);↵ | | 2 | return getPropertyAsString(TIMELIM);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public int getScopeAsInt() {↵ | | 4 | public int getTimelimAsInt() {↵
|
5 | return getPropertyAsInt(SCOPE);↵ | | 5 | return getPropertyAsInt(TIMELIM);↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /***************************************************************************↵ | | 7 | /***************************************************************************↵
|
8 | * Sets the search scope attribute of the LDAPSampler object↵ | | 8 | * Sets the time limit attribute of the LDAPSampler object↵
|
9 | * ↵ | | 9 | * ↵
|
10 | * @param newScope↵ | | 10 | * @param newTlim↵
|
11 | * The new scope value↵ | | 11 | * The new time limit value↵
|
12 | **************************************************************************/↵ | | 12 | **************************************************************************/↵
|
13 | public void setScope(String newScope) {↵ | | 13 | public void setTimelim(String newTlim) {↵
|
14 | this.setProperty(SCOPE, newScope);↵ | | 14 | this.setProperty(TIMELIM, newTlim);↵
|
15 | } | | 15 | }
|