RPC opendaylight-direct-statistics:get-flow-statistics not taking nicira
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / data / FlowStatsResponseConvertorData.java
1 /*
2  * Copyright (c) 2017 Ericsson India Global Services Pvt Ltd. 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.openflow.md.core.sal.convertor.data;
10
11 import org.opendaylight.openflowplugin.extension.api.path.MatchPath;
12
13 public class FlowStatsResponseConvertorData extends VersionDatapathIdConvertorData {
14     private MatchPath matchPath;
15
16     public FlowStatsResponseConvertorData(short version) {
17         super(version);
18     }
19
20     public MatchPath getMatchPath() {
21         return matchPath;
22     }
23
24     public void setMatchPath(MatchPath matchPath) {
25         this.matchPath = matchPath;
26     }
27 }