1 | void setQueueConnectionFactory(String qcf) {↵ | | 1 | void setXAxis(String field) {↵
|
2 | setProperty(QUEUE_CONNECTION_FACTORY_JNDI, qcf);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
|
4 | ↵ | | 3 | REPORT_CHART_X_AXIS,field);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
5 | public String getSendQueue() {↵ | | 6 | public String getYAxis() {↵
|
6 | return getPropertyAsString(SEND_QUEUE);↵ | | 7 | return getPropertyAsString(↵
|
7 | }↵ | | |
|
|
8 | ↵ | | 8 | REPORT_CHART_Y_AXIS);↵
|
| | | 9 | }↵
|
| | | 10 | ↵
|
9 | public void setSendQueue(String name) {↵ | | 11 | public void setYAxis(String scale) {↵
|
10 | setProperty(SEND_QUEUE, name);↵ | | 12 | setProperty(REPORT_CHART_Y_AXIS,scale);↵
|
11 | }↵ | | 13 | }↵
|
|
12 | public String getReceiveQueue() {↵ | | 14 | public String getXLabel() {↵
|
13 | return getPropertyAsString(RECEIVE_QUEUE);↵ | | 15 | return getPropertyAsString(RE↵
|
14 | | | 16 | PORT_CHART_X_LABEL);↵
|
| | | 17 |
|