use of org.apache.activemq.command.RemoveInfo in project activemq-artemis by apache.
the class RemoveInfoTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
RemoveInfo info = (RemoveInfo) object;
info.setObjectId(createDataStructure("ObjectId:1"));
}
use of org.apache.activemq.command.RemoveInfo in project activemq-artemis by apache.
the class RemoveInfoTest method createObject.
@Override
public Object createObject() throws Exception {
RemoveInfo info = new RemoveInfo();
populateObject(info);
return info;
}
use of org.apache.activemq.command.RemoveInfo in project activemq-artemis by apache.
the class RemoveInfoTest method createObject.
@Override
public Object createObject() throws Exception {
RemoveInfo info = new RemoveInfo();
populateObject(info);
return info;
}
Aggregations