1 | String getScript() {↵ | | 1 | String getSuccessCode(){↵
|
2 | return this.getPropertyAsString(SCRIPT);↵ | | 2 | return getPropertyAsString(S↵
|
3 | }↵ | | |
|
|
4 | ↵ | | 3 | UCCESSCODE);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the succes code. the success code should↵
|
| | | 7 | * be unique.↵
|
| | | 8 | * @param code↵
|
| | | 9 | */↵
|
5 | public void setScript(String newScript) {↵ | | 10 | public void setS↵
|
6 | this.setProperty(SCRIPT, newScript);↵ | | |
|
7 | }↵ | | |
|
|
8 | ↵ | | 11 | uccessCode(String code){↵
|
| | | 12 | setProperty(SUCCESSCODE,code);↵
|
| | | 13 | }↵
|
| | | 14 | ↵
|
| | | 15 | /**↵
|
| | | 16 | * get the failure message↵
|
| | | 17 | */↵
|
9 | public String getParameters() {↵ | | 18 | public String getFailure(){↵
|
10 | return this.getPropertyAsString(PARAMETERS);↵ | | 19 | return getPropertyAsString(↵
|
11 | ↵ | | 20 | FAILURE);↵
|
12 | } | | 21 | }
|