1 | String getQueueConnectionFactory() {↵ | | 1 | String getSuccessCode(){↵
|
2 | return getPropertyAsString(QUEUE_CONNECTION_FACTORY_JNDI);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | public void setQueueConnectionFactory(String qcf) {↵ | | |
|
5 | setProperty(QUEUE_CONNECTION_FACTORY_JNDI, qcf);↵ | | |
|
6 | }↵ | | |
|
|
7 | ↵ | | 3 | SUCCESSCODE);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the succes code. the success code should↵
|
| | | 7 | * be unique.↵
|
| | | 8 | * @param code↵
|
| | | 9 | */↵
|
| | | 10 | public void setSuccessCode(String code){↵
|
| | | 11 | setProperty(SUCCESSCODE,code);↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * get the failure message↵
|
| | | 16 | */↵
|
8 | public String getSendQueue() {↵ | | 17 | public String getFailure(){↵
|
9 | return getPropertyAsString(SEND_QUEUE);↵ | | 18 | return getPropertyAsString(FAILURE);↵
|
10 | | | 19 |
|