use of org.apache.qpid.server.store.ConfiguredObjectRecordImpl in project qpid-broker-j by apache.
the class TestBrokerConfiguration method addObjectConfiguration.
private void addObjectConfiguration(UUID id, String type, Map<String, Object> attributes) {
ConfiguredObjectRecord entry = new ConfiguredObjectRecordImpl(id, type, attributes, Collections.singletonMap(Broker.class.getSimpleName(), findObject(Broker.class, null).getId()));
_store.update(true, entry);
}
Aggregations