de02d68302440ff58ca81f186aa8d7b8c5f71452
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceManager.java
1 /*
2  * Copyright (c) 2015, 2017 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
9 package org.opendaylight.openflowplugin.api.openflow.device;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.openflowplugin.api.openflow.OFPManager;
14 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
15 import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
18 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
19
20 /**
21  * This interface is responsible for instantiating DeviceContext and
22  * registering transaction chain for each DeviceContext. Each device
23  * has its own device context managed by this manager.
24  */
25 public interface DeviceManager extends
26         OFPManager,
27         TranslatorLibrarian {
28
29     /**
30      * invoked after all services injected.
31      */
32     void initialize();
33
34     ListenableFuture<Void> removeDeviceFromOperationalDS(
35             @Nonnull KeyedInstanceIdentifier<Node, NodeKey> ii);
36
37     DeviceContext createContext(@Nonnull ConnectionContext connectionContext);
38
39
40     void sendNodeAddedNotification(
41             @Nonnull KeyedInstanceIdentifier<Node, NodeKey> instanceIdentifier);
42
43     void sendNodeRemovedNotification(
44             @Nonnull KeyedInstanceIdentifier<Node, NodeKey> instanceIdentifier);
45 }
46