use of org.opendaylight.lispflowmapping.implementation.mdsal.AuthenticationKeyDataListener in project lispflowmapping by opendaylight.
the class MappingService method initialize.
public void initialize() {
LOG.info("Mapping Service initializing...");
dsbe = new DataStoreBackEnd(dataBroker);
mappingSystem = new MappingSystem(dao, iterateMask, notificationPublishService, mappingMergePolicy);
mappingSystem.setDataStoreBackEnd(dsbe);
mappingSystem.initialize();
keyListener = new AuthenticationKeyDataListener(dataBroker, mappingSystem);
mappingListener = new MappingDataListener(dataBroker, mappingSystem, notificationPublishService);
LOG.info("Mapping Service loaded.");
}
Aggregations