1 | String getSuccess(){↵ | | 1 | String getQueueConnectionFactory() {↵
|
2 | return getPropertyAsString(SUCCESS);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | /**↵ | | |
|
6 | * set the success message↵ | | |
|
7 | * @param success↵ | | |
|
8 | */↵ | | |
|
9 | public void setSuccess(String success){↵ | | |
|
10 | setProperty(SUCCESS,success);↵ | | |
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * get the success code defined by the user↵ | | |
|
15 | */↵ | | |
|
16 | ↵ | | 3 | QUEUE_CONNECTION_FACTORY_JNDI);↵
|
| | | 4 | }↵
|
|
| | | 5 | public void setQueueConnectionFactory(String qcf) {↵
|
| | | 6 | setProperty(QUEUE_CONNECTION_FACTORY_JNDI, qcf);↵
|
| | | 7 | }↵
|
|
17 | public String getSuccessCode(){↵ | | 8 | public String getSendQueue() {↵
|
18 | return getPropertyAsString(SUCCESSCODE);↵ | | 9 | return getPropertyAsString(SEND_QUEUE);↵
|
19 | | | 10 |
|