protected void populateObject(Object object) throws Exception {
    super.populateObject(object);
    JournalQueueAck info = (JournalQueueAck) object;

    info.setDestination(createActiveMQDestination("Destination:1"));
    info.setMessageAck(createMessageAck("MessageAck:2"));
  }
  @Override
  protected void populateObject(Object object) throws Exception {
    super.populateObject(object);
    ConsumerId info = (ConsumerId) object;

    info.setConnectionId("ConnectionId:1");
    info.setSessionId(1);
    info.setValue(2);
  }
Exemplo n.º 3
0
/**