X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fstatistics%2Fservices%2Fcompatibility%2FOpendaylightFlowStatisticsServiceDelegateImpl.java;h=ff9bbee23c57cf5bc0479554c71c69fff1faf8e8;hb=73776c548ab153dee35ca4165ca0ef2413969704;hp=afd42d2e0f544f4c6ac4bd05e84ee824a24d79cf;hpb=fe05dabd56d7bf254b034a0804ba666eeb4fd6d6;p=openflowplugin.git diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/OpendaylightFlowStatisticsServiceDelegateImpl.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/OpendaylightFlowStatisticsServiceDelegateImpl.java index afd42d2e0f..ff9bbee23c 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/OpendaylightFlowStatisticsServiceDelegateImpl.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/OpendaylightFlowStatisticsServiceDelegateImpl.java @@ -7,9 +7,9 @@ */ package org.opendaylight.openflowplugin.impl.statistics.services.compatibility; -import java.util.concurrent.Future; +import com.google.common.util.concurrent.ListenableFuture; import java.util.concurrent.atomic.AtomicLong; -import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService; +import org.opendaylight.mdsal.binding.api.NotificationPublishService; import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext; import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack; import org.opendaylight.openflowplugin.impl.statistics.services.AggregateFlowsInTableService; @@ -32,9 +32,6 @@ import org.opendaylight.yangtools.yang.common.RpcResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -/** - * @author joe - */ public class OpendaylightFlowStatisticsServiceDelegateImpl implements OpendaylightFlowStatisticsService { private static final Logger LOG = LoggerFactory.getLogger(OpendaylightFlowStatisticsServiceDelegateImpl.class); @@ -51,43 +48,53 @@ public class OpendaylightFlowStatisticsServiceDelegateImpl implements Opendaylig final AtomicLong compatibilityXidSeed, final ConvertorExecutor convertorExecutor) { this.notificationService = notificationService; - aggregateFlowsInTable = AggregateFlowsInTableService.createWithOook(requestContextStack, deviceContext, compatibilityXidSeed); - allFlowsInAllTables = new AllFlowsInAllTablesService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor); - allFlowsInTable = new AllFlowsInTableService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor); - flowsInTable = new FlowsInTableService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor); + aggregateFlowsInTable = + AggregateFlowsInTableService.createWithOook(requestContextStack, deviceContext, compatibilityXidSeed); + allFlowsInAllTables = new AllFlowsInAllTablesService(requestContextStack, + deviceContext, + compatibilityXidSeed, + convertorExecutor); + allFlowsInTable = + new AllFlowsInTableService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor); + flowsInTable = + new FlowsInTableService(requestContextStack, deviceContext, compatibilityXidSeed, convertorExecutor); } /** - * @deprecated this is the only method with real implementation provided, in delegate it makes no sense + * Get statistics for the given match. + * + * @deprecated this is the only method with real implementation provided, in delegate it makes no sense. */ @Override @Deprecated - public Future> getAggregateFlowStatisticsFromFlowTableForGivenMatch( + public ListenableFuture> + getAggregateFlowStatisticsFromFlowTableForGivenMatch( final GetAggregateFlowStatisticsFromFlowTableForGivenMatchInput input) { - throw new IllegalAccessError("unsupported by backward compatibility delegate service " + - "- this rpc is always provided by default service implementation"); + throw new IllegalAccessError("unsupported by backward compatibility delegate service " + + "- this rpc is always provided by default service implementation"); } @Override - public Future> getAggregateFlowStatisticsFromFlowTableForAllFlows( + public ListenableFuture> + getAggregateFlowStatisticsFromFlowTableForAllFlows( final GetAggregateFlowStatisticsFromFlowTableForAllFlowsInput input) { return aggregateFlowsInTable.handleAndNotify(input, notificationService); } @Override - public Future> getAllFlowStatisticsFromFlowTable( + public ListenableFuture> getAllFlowStatisticsFromFlowTable( final GetAllFlowStatisticsFromFlowTableInput input) { return allFlowsInTable.handleAndNotify(input, notificationService); } @Override - public Future> getAllFlowsStatisticsFromAllFlowTables( - final GetAllFlowsStatisticsFromAllFlowTablesInput input) { + public ListenableFuture> + getAllFlowsStatisticsFromAllFlowTables(final GetAllFlowsStatisticsFromAllFlowTablesInput input) { return allFlowsInAllTables.handleAndNotify(input, notificationService); } @Override - public Future> getFlowStatisticsFromFlowTable( + public ListenableFuture> getFlowStatisticsFromFlowTable( final GetFlowStatisticsFromFlowTableInput input) { return flowsInTable.handleAndNotify(input, notificationService); }