9065cfc5c5ecbed5e417764990f278c9e21ed3af
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / 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.services;
9
10 import java.util.concurrent.Future;
11 import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetAllNodeConnectorsStatisticsInput;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetAllNodeConnectorsStatisticsOutput;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetNodeConnectorStatisticsInput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetNodeConnectorStatisticsOutput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.OpendaylightPortStatisticsService;
17 import org.opendaylight.yangtools.yang.common.RpcResult;
18
19 /**
20  * @author joe
21  * 
22  */
23 // TODO: implement this
24 public class OpendaylightPortStatisticsServiceImpl extends CommonService implements OpendaylightPortStatisticsService {
25
26     /**
27      * @param rpcContext
28      */
29     public OpendaylightPortStatisticsServiceImpl(final RpcContext rpcContext) {
30         super(rpcContext);
31     }
32
33     /*
34          * (non-Javadoc)
35          *
36          * @see org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.OpendaylightPortStatisticsService#
37          * getAllNodeConnectorsStatistics
38          * (org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetAllNodeConnectorsStatisticsInput)
39          */
40     @Override
41     public Future<RpcResult<GetAllNodeConnectorsStatisticsOutput>> getAllNodeConnectorsStatistics(
42             final GetAllNodeConnectorsStatisticsInput input) {
43         // TODO Auto-generated method stub
44         return null;
45     }
46
47     /*
48      * (non-Javadoc)
49      * 
50      * @see org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.OpendaylightPortStatisticsService#
51      * getNodeConnectorStatistics
52      * (org.opendaylight.yang.gen.v1.urn.opendaylight.port.statistics.rev131214.GetNodeConnectorStatisticsInput)
53      */
54     @Override
55     public Future<RpcResult<GetNodeConnectorStatisticsOutput>> getNodeConnectorStatistics(
56             final GetNodeConnectorStatisticsInput input) {
57         // TODO Auto-generated method stub
58         return null;
59     }
60
61 }