blob: 6cbb413e3ff6cbc025b7f2d4780424cc99a95642 [file] [log] [blame]
Phaneendra Manda0f21ad62016-02-12 19:32:13 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Phaneendra Manda0f21ad62016-02-12 19:32:13 +05303 *
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.sfc.util;
17
18import org.onosproject.net.behaviour.ExtensionTreatmentResolver;
19import org.onosproject.net.driver.DriverData;
20import org.onosproject.net.driver.DriverHandler;
21import org.onosproject.net.flow.instructions.ExtensionTreatment;
22import org.onosproject.net.flow.instructions.ExtensionTreatmentType;
23
24public class MockExtensionTreatmentResolver implements ExtensionTreatmentResolver {
25
26 @Override
27 public DriverHandler handler() {
28 return null;
29 }
30
31 @Override
32 public void setHandler(DriverHandler handler) {
33 }
34
35 @Override
36 public DriverData data() {
37 return null;
38 }
39
40 @Override
41 public void setData(DriverData data) {
42 }
43
44 @Override
45 public ExtensionTreatment getExtensionInstruction(ExtensionTreatmentType type) {
46 return new MockExtensionTreatment();
47 }
48
49}