use of org.apache.activemq.command.TransactionInfo in project activemq-artemis by apache.
the class TransactionInfoTest method createObject.
@Override
public Object createObject() throws Exception {
TransactionInfo info = new TransactionInfo();
populateObject(info);
return info;
}
use of org.apache.activemq.command.TransactionInfo in project activemq-artemis by apache.
the class TransactionInfoTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
TransactionInfo info = (TransactionInfo) object;
info.setConnectionId(createConnectionId("ConnectionId:1"));
info.setTransactionId(createTransactionId("TransactionId:2"));
info.setType((byte) 1);
}
use of org.apache.activemq.command.TransactionInfo in project activemq-artemis by apache.
the class TransactionInfoTest method createObject.
@Override
public Object createObject() throws Exception {
TransactionInfo info = new TransactionInfo();
populateObject(info);
return info;
}
use of org.apache.activemq.command.TransactionInfo in project activemq-artemis by apache.
the class TransactionInfoTest method createObject.
@Override
public Object createObject() throws Exception {
TransactionInfo info = new TransactionInfo();
populateObject(info);
return info;
}
Aggregations