blob: c2ec6741f780ad73606fd5040855f08c374e68d3 [file] [log] [blame]
Phaneendra Manda0f21ad62016-02-12 19:32:13 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
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) {
Phaneendra Manda8db7d092016-06-04 00:17:24 +053046 return new MockExtensionTreatment(type);
Phaneendra Manda0f21ad62016-02-12 19:32:13 +053047 }
48
49}