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