Simplify CommonService interface
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / statistics / services / OpendaylightPortStatisticsServiceImpl.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 package org.opendaylight.openflowplugin.impl.statistics.services;
9
10 import java.util.concurrent.Future;
11 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
12 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetAllNodeConnectorsStatisticsInput;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetAllNodeConnectorsStatisticsOutput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetNodeConnectorStatisticsInput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetNodeConnectorStatisticsOutput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.OpendaylightPortStatisticsService;
18 import org.opendaylight.yangtools.yang.common.RpcResult;
19
20 public class OpendaylightPortStatisticsServiceImpl implements OpendaylightPortStatisticsService {
21     private final AllPortStatsService allPortStats;
22     private final PortStatsService portStats;
23
24     public OpendaylightPortStatisticsServiceImpl(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
25         allPortStats = new AllPortStatsService(requestContextStack, deviceContext);
26         portStats = new PortStatsService(requestContextStack, deviceContext);
27     }
28
29     @Override
30     public Future<RpcResult<GetAllNodeConnectorsStatisticsOutput>> getAllNodeConnectorsStatistics(
31             final GetAllNodeConnectorsStatisticsInput input) {
32         return allPortStats.handleServiceCall(input);
33     }
34
35     @Override
36     public Future<RpcResult<GetNodeConnectorStatisticsOutput>> getNodeConnectorStatistics(
37             final GetNodeConnectorStatisticsInput input) {
38         return portStats.handleServiceCall(input);
39     }
40 }