blob: 54c50464900d9cbce563f58b64d4b2e256844110 [file] [log] [blame]
package org.eclipse.basyx.aas.registration.memory;
import java.util.HashMap;
/**
* An implementation of the IAASRegistryService interface.
* This registry can not store its entries permanently, because it is completely based on HashMaps.
*
* @author espen
*
*/
public class InMemoryRegistry extends MapRegistry {
/**
* Default constructor based on HashMaps
*/
public InMemoryRegistry() {
super(new HashMap<>());
}
}