blob: 6c126436428521c797fe635ec9981e759725636f [file] [log] [blame]
Srikanth Vavilapalli8a661e72014-10-27 15:40:22 -07001package net.onrc.onos.core.drivermanager;
2
3import org.projectfloodlight.openflow.protocol.OFDescStatsReply;
4
5/**
6 * OFDescriptionStatistics Vendor (Manufacturer Desc.): Dell Make (Hardware
7 * Desc.) : OpenFlow 1.3 Reference Userspace Switch Model (Datapath Desc.) :
8 * None Software : Serial : None
9 */
10public class OFSwitchImplDellOSR extends OFSwitchImplSpringOpenTTP {
11
12 public OFSwitchImplDellOSR(OFDescStatsReply desc, boolean usePipeline13) {
13 super(desc, usePipeline13);
14 }
15}