115116117118119120121122123
public Producer createProducer() throws Exception { SjmsProducer producer = null; if (getExchangePattern().equals(ExchangePattern.InOnly)) { producer = new InOnlyProducer(this); } else { producer = new InOutProducer(this); } return producer; }
105106107108109110111112113
111112113114115116117118119
108109110111112113114115116
124125126127128129130131132