1 | String getQueueConnectionFactory() {↵ | | 1 | String getFailureCode(){↵
|
2 | return getPropertyAsString(QUEUE_CONNECTION_FACTORY_JNDI);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | ↵ | | 3 | FAILURECODE);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
| | | 6 | /**↵
|
| | | 7 | * Provide some unique code to denote a type of failure↵
|
| | | 8 | * @param code↵
|
| | | 9 | */↵
|
5 | public void setQueueConnectionFactory(String qcf) {↵ | | 10 | public void set↵
|
6 | setProperty(QUEUE_CONNECTION_FACTORY_JNDI, qcf);↵ | | |
|
7 | }↵ | | |
|
|
8 | ↵ | | 11 | FailureCode(String code){↵
|
| | | 12 | setProperty(FAILURECODE,code);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * return the descriptive error for the test↵
|
| | | 16 | */↵
|
9 | public String getSendQueue() {↵ | | 17 | public String getError(){↵
|
10 | return getPropertyAsString(SEND_QUEUE);↵ | | 18 | return getPropertyAsString(↵
|
11 | | | 19 | ERROR);↵
|
| | | 20 |
|