Exemplo n.º 1
0
  public Message putBooleanProperty(final String key, final boolean value) {
    properties.putBooleanProperty(new SimpleString(key), value);

    bufferValid = false;

    return this;
  }
Exemplo n.º 2
0
 @Override
 public JMSProducer setProperty(String name, boolean value) {
   checkName(name);
   properties.putBooleanProperty(new SimpleString(name), value);
   return this;
 }