blob: 1e8664136d4a2e206af31a41e3420176f9101583 [file] [log] [blame]
Ray Milkey7f9e0202015-11-04 17:14:09 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.openflow;
17
18import java.util.Set;
19
20import org.jboss.netty.buffer.ChannelBuffer;
21import org.projectfloodlight.openflow.protocol.OFDescStatsReply;
22import org.projectfloodlight.openflow.protocol.OFStatsReplyFlags;
23import org.projectfloodlight.openflow.protocol.OFStatsType;
24import org.projectfloodlight.openflow.protocol.OFType;
25import org.projectfloodlight.openflow.protocol.OFVersion;
26
27import com.google.common.hash.PrimitiveSink;
28
29/**
30 * Created by ray on 11/4/15.
31 */
32public class OFDescStatsReplyAdapter implements OFDescStatsReply {
33 @Override
34 public OFVersion getVersion() {
35 return null;
36 }
37
38 @Override
39 public OFType getType() {
40 return null;
41 }
42
43 @Override
44 public long getXid() {
45 return 0;
46 }
47
48 @Override
49 public OFStatsType getStatsType() {
50 return null;
51 }
52
53 @Override
54 public Set<OFStatsReplyFlags> getFlags() {
55 return null;
56 }
57
58 @Override
59 public String getMfrDesc() {
60 return null;
61 }
62
63 @Override
64 public String getHwDesc() {
65 return null;
66 }
67
68 @Override
69 public String getSwDesc() {
70 return null;
71 }
72
73 @Override
74 public String getSerialNum() {
75 return null;
76 }
77
78 @Override
79 public String getDpDesc() {
80 return null;
81 }
82
83 @Override
84 public void writeTo(ChannelBuffer channelBuffer) {
85
86 }
87
88 @Override
89 public Builder createBuilder() {
90 return null;
91 }
92
93 @Override
94 public void putTo(PrimitiveSink sink) {
95
96 }
97}