1 | String getTimeout() {↵ | | 1 | String getTimelim() {↵
|
2 | return getPropertyAsString(TIMEOUT);↵ | | 2 | return getPropertyAsString(TIMELIM);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public int getTimeoutAsInt() {↵ | | 4 | public int getTimelimAsInt() {↵
|
5 | return getPropertyAsInt(TIMEOUT);↵ | | 5 | return getPropertyAsInt(TIMELIM);↵
|
6 | }↵ | | |
|
|
7 | ↵ | | 6 | }↵
|
|
| | | 7 | /***************************************************************************↵
|
| | | 8 | * Sets the time limit attribute of the LDAPSampler object↵
|
| | | 9 | * ↵
|
| | | 10 | * @param newTlim↵
|
| | | 11 | * The new time limit value↵
|
| | | 12 | **************************************************************************/↵
|
8 | public void setTimeout(String text) {↵ | | 13 | public void setTimelim(String ↵
|
9 | ↵ | | 14 | newTlim) {↵
|
10 | setProperty(TIMEOUT, text);↵ | | 15 | this.setProperty(TIME↵
|
11 | ↵ | | 16 | LIM, newTlim);↵
|
12 | } | | 17 | }
|