1 | String getReceiveQueue() {↵ | | 1 | String getErrorCode(){↵
|
2 | return getPropertyAsString(RECEIVE_QUEUE);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | public void setReceiveQueu↵ | | 3 | ERRORCODE);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
| | | 6 | /**↵
|
| | | 7 | * provide an unique error code for when the test↵
|
| | | 8 | * does not pass the assert test.↵
|
| | | 9 | * @param code↵
|
| | | 10 | */↵
|
5 | e(String name) {↵ | | 11 | public void setErrorCode(String code){↵
|
6 | setProperty(RECEIVE_QUEUE, name);↵ | | 12 | setProperty(↵
|
7 | }↵ | | |
|
|
8 | ↵ | | 13 | ERRORCODE,code);↵
|
| | | 14 | }↵
|
| | | 15 | ↵
|
| | | 16 | /**↵
|
| | | 17 | * return the comma separated string for the filter↵
|
| | | 18 | */↵
|
9 | public String getContent() {↵ | | 19 | public String getFilterString(){↵
|
10 | return getPropertyAsString(XML_DATA);↵ | | 20 | return getPropertyAsString(↵
|
11 | ↵ | | 21 | FILTER);↵
|
12 | } | | 22 | }
|