Exemplo n.º 1
0
 @Override
 public JMSProducer send(Destination destination, String body) {
   TextMessage message = context.createTextMessage(body);
   send(destination, message);
   return this;
 }