use of org.apache.activemq.artemis.core.persistence.config.PersistedAddressSetting in project activemq-artemis by apache.
the class AddressSettingsConfigurationStorageTest method addAddress.
protected void addAddress(StorageManager journal1, String address, AddressSettings setting) throws Exception {
SimpleString str = new SimpleString(address);
PersistedAddressSetting persistedSetting = new PersistedAddressSetting(str, setting);
mapExpectedAddresses.put(str, persistedSetting);
journal1.storeAddressSetting(persistedSetting);
}
Aggregations