use of org.apache.activemq.command.ConnectionId in project activemq-artemis by apache.
the class ConnectionIdTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
ConnectionId info = (ConnectionId) object;
info.setValue("Value:1");
}
use of org.apache.activemq.command.ConnectionId in project activemq-artemis by apache.
the class ConnectionIdTest method createObject.
@Override
public Object createObject() throws Exception {
ConnectionId info = new ConnectionId();
populateObject(info);
return info;
}
use of org.apache.activemq.command.ConnectionId in project activemq-artemis by apache.
the class ConnectionIdTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
ConnectionId info = (ConnectionId) object;
info.setValue("Value:1");
}
use of org.apache.activemq.command.ConnectionId in project activemq-artemis by apache.
the class ConnectionIdTest method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
ConnectionId info = (ConnectionId) object;
info.setValue("Value:1");
}
use of org.apache.activemq.command.ConnectionId in project activemq-artemis by apache.
the class FanoutTransportBrokerTest method createConnectionInfo.
protected ConnectionInfo createConnectionInfo() throws Exception {
ConnectionInfo info = new ConnectionInfo();
info.setConnectionId(new ConnectionId("connection:" + (++idGenerator)));
info.setClientId(info.getConnectionId().getValue());
return info;
}
Aggregations