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