1 | String getCountlim() {↵ | | 1 | String getScope() {↵
|
2 | return getPropertyAsString(COUNTLIM);↵ | | 2 | return getPropertyAsString(SCOPE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public long getCountlimAsLong() {↵ | | 4 | public int getScopeAsInt() {↵
|
5 | return getPropertyAsLong(COUNTLIM);↵ | | 5 | return getPropertyAsInt(SCOPE);↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /***************************************************************************↵ | | 7 | /***************************************************************************↵
|
8 | * Sets the size limit attribute of the LDAPSampler object↵ | | 8 | * Sets the search scope attribute of the LDAPSampler object↵
|
9 | * ↵ | | 9 | * ↵
|
10 | * @param newClim↵ | | 10 | * @param newScope↵
|
11 | * The new size limit value↵ | | 11 | * The new scope value↵
|
12 | **************************************************************************/↵ | | 12 | **************************************************************************/↵
|
13 | public void setCountlim(String newClim) {↵ | | 13 | public void setScope(String newScope) {↵
|
14 | this.setProperty(COUNTLIM, newClim);↵ | | 14 | this.setProperty(SCOPE, newScope);↵
|
15 | } | | 15 | }
|