X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fapi%2Fopenflow%2Fdevice%2FDeviceManager.java;h=64cfd864d1aca65c72602fcad1126714aea96e10;hb=f1cc4de7dee9e22c231a90cf517b03bc5071ad35;hp=51f4ee680cf577467bb0068f3dd2a91b3356aa54;hpb=6a0098658a6c4e8312e3d7491b7866e4a4a1da2a;p=openflowplugin.git diff --git a/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceManager.java b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceManager.java index 51f4ee680c..64cfd864d1 100644 --- a/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceManager.java +++ b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015, 2017 Cisco Systems, Inc. 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, @@ -8,30 +8,37 @@ package org.opendaylight.openflowplugin.api.openflow.device; -import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceConnectedHandler; -import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceDisconnectedHandler; -import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceInitializationPhaseHandler; -import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceLifecycleSupervisor; -import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceTerminationPhaseHandler; +import com.google.common.util.concurrent.CheckedFuture; +import javax.annotation.Nonnull; +import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException; +import org.opendaylight.openflowplugin.api.openflow.OFPManager; +import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext; import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian; +import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node; +import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey; +import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier; /** * This interface is responsible for instantiating DeviceContext and * registering transaction chain for each DeviceContext. Each device * has its own device context managed by this manager. */ -public interface DeviceManager extends DeviceConnectedHandler, DeviceDisconnectedHandler, DeviceLifecycleSupervisor, - DeviceInitializationPhaseHandler, DeviceTerminationPhaseHandler, TranslatorLibrarian, AutoCloseable { - +public interface DeviceManager extends + OFPManager, + TranslatorLibrarian { /** - * invoked after all services injected + * invoked after all services injected. */ void initialize(); - void setIsNotificationFlowRemovedOff(boolean value); + void setFlowRemovedNotificationOn(boolean value); + + boolean isFlowRemovedNotificationOn(); + + void setGlobalNotificationQuota(long globalNotificationQuota); - boolean getIsNotificationFlowRemovedOff(); + void setSwitchFeaturesMandatory(boolean switchFeaturesMandatory); void setSkipTableFeatures(boolean skipTableFeatures); @@ -39,5 +46,18 @@ public interface DeviceManager extends DeviceConnectedHandler, DeviceDisconnecte void setBarrierInterval(long barrierTimeoutLimit); + CheckedFuture removeDeviceFromOperationalDS(DeviceInfo deviceInfo); + + CheckedFuture removeDeviceFromOperationalDS(final KeyedInstanceIdentifier ii); + + void setUseSingleLayerSerialization(Boolean useSingleLayerSerialization); + + DeviceContext createContext(@Nonnull final ConnectionContext connectionContext); + + long getBarrierIntervalNanos(); + + int getBarrierCountLimit(); + + void sendNodeAddedNotification(@Nonnull final DeviceInfo deviceInfo); }