Bug 5596 Cleaning lifecycle conductor
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceManager.java
1 /*
2  * Copyright (c) 2015 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 org.opendaylight.openflowplugin.api.openflow.OFPManager;
12 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceConnectedHandler;
13 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceDisconnectedHandler;
14 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceInitializationPhaseHandler;
15 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceLifecycleSupervisor;
16 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceTerminationPhaseHandler;
17 import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleService;
18 import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
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 DeviceConnectedHandler, DeviceDisconnectedHandler, DeviceLifecycleSupervisor,
26         DeviceInitializationPhaseHandler, DeviceTerminationPhaseHandler, TranslatorLibrarian, AutoCloseable, OFPManager {
27
28
29     /**
30      * invoked after all services injected
31      */
32     void initialize();
33
34     void setIsNotificationFlowRemovedOff(boolean value);
35
36     boolean getIsNotificationFlowRemovedOff();
37
38 }
39