/* * Copyright (c) 2023 PANTHEON.tech, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.netconf.impl.mdsal; import static java.util.Objects.requireNonNull; import java.util.Map; import org.opendaylight.controller.config.threadpool.ScheduledThreadPool; import org.opendaylight.netconf.api.monitoring.NetconfMonitoringService; import org.opendaylight.netconf.impl.osgi.NetconfMonitoringServiceImpl; import org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactory; import org.osgi.service.component.annotations.Activate; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Deactivate; @Component(factory = DefaultNetconfMonitoringService.FACTORY_NAME, service = NetconfMonitoringService.class) public final class DefaultNetconfMonitoringService extends NetconfMonitoringServiceImpl { static final String FACTORY_NAME = "org.opendaylight.netconf.impl.mdsal.DefaultNetconfMonitoringService"; private static final String OP_PROVIDER_PROP = ".opProvider"; private static final String THREAD_POOL_PROP = ".threadPool"; private static final String UPDATE_INTERVAL_PROP = ".updateInterval"; @Activate public DefaultNetconfMonitoringService(final Map properties) { super(OSGiNetconfServer.extractProp(properties, OP_PROVIDER_PROP, NetconfOperationServiceFactory.class), OSGiNetconfServer.extractProp(properties, THREAD_POOL_PROP, ScheduledThreadPool.class), OSGiNetconfServer.extractProp(properties, UPDATE_INTERVAL_PROP, Long.class)); } @Override @Deactivate public void close() { super.close(); } static Map props(final NetconfOperationServiceFactory opProvider, final ScheduledThreadPool threadPool, final long updateInterval) { return Map.of( "type", "netconf-server-monitoring", OP_PROVIDER_PROP, requireNonNull(opProvider), THREAD_POOL_PROP, requireNonNull(threadPool), UPDATE_INTERVAL_PROP, updateInterval); } }