assertTrue("Unexpected port children found", storeEntry.getChildrenIds().isEmpty());
}
public void testMultipleSave()
{
UUID virtualHostId = UUID.randomUUID();
Map<String, Object> virtualHostAttributes = new HashMap<String, Object>();
virtualHostAttributes.put(VirtualHost.NAME, "test1");
virtualHostAttributes.put(VirtualHost.CONFIG_PATH, "/path/to/phantom/virtualhost/config1");
ConfigurationEntry hostEntry = new ConfigurationEntry(virtualHostId, VirtualHost.class.getSimpleName(), virtualHostAttributes,
Collections.<UUID> emptySet(), _store);
UUID keyStoreId = UUID.randomUUID();
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.put(KeyStore.NAME, getName());
attributes.put(KeyStore.PATH, "/path/to/truststore");
attributes.put(KeyStore.PASSWORD, "my-secret-password");
attributes.put(KeyStore.TYPE, "NON-JKS");