BUG 2676 : Use notification-dispatcher for DataChangeListener actors
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / osgi / NetconfOperationServiceFactoryListenerImpl.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.impl.osgi;
9
10 import java.util.HashSet;
11 import java.util.Set;
12 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationProvider;
13 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationServiceFactory;
14
15 public class NetconfOperationServiceFactoryListenerImpl implements NetconfOperationServiceFactoryListener,
16         NetconfOperationProvider {
17     private final Set<NetconfOperationServiceFactory> allFactories = new HashSet<>();
18
19     @Override
20     public synchronized void onAddNetconfOperationServiceFactory(NetconfOperationServiceFactory service) {
21         allFactories.add(service);
22     }
23
24     @Override
25     public synchronized void onRemoveNetconfOperationServiceFactory(NetconfOperationServiceFactory service) {
26         allFactories.remove(service);
27     }
28
29     @Override
30     public synchronized NetconfOperationServiceSnapshotImpl openSnapshot(String sessionIdForReporting) {
31         return new NetconfOperationServiceSnapshotImpl(allFactories, sessionIdForReporting);
32     }
33
34 }