blob: b1a3c683d193393b8fa68fdaf725ae283a063c40 [file] [log] [blame]
Jonathan Hart26a8d952015-12-02 15:16:35 -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 */
16
17package org.onosproject.driver.extensions;
18
19import org.onosproject.net.behaviour.ExtensionSelectorResolver;
20import org.onosproject.net.driver.AbstractHandlerBehaviour;
21import org.onosproject.net.flow.criteria.ExtensionSelector;
22import org.onosproject.net.flow.criteria.ExtensionSelectorType;
23import org.onosproject.openflow.controller.ExtensionSelectorInterpreter;
24import org.projectfloodlight.openflow.protocol.OFFactory;
25import org.projectfloodlight.openflow.protocol.oxm.OFOxm;
26
27/**
28 * Interpreter for Nicira OpenFlow selector extensions.
29 */
30public class NiciraExtensionSelectorInterpreter
31 extends AbstractHandlerBehaviour
32 implements ExtensionSelectorInterpreter, ExtensionSelectorResolver {
33
34 @Override
35 public boolean supported(ExtensionSelectorType extensionSelectorType) {
36 return false;
37 }
38
39 @Override
40 public OFOxm<?> mapSelector(OFFactory factory, ExtensionSelector extensionSelector) {
41 return null;
42 }
43
44 @Override
45 public ExtensionSelector mapOxm(OFOxm<?> oxm) {
46 return null;
47 }
48
49 @Override
50 public ExtensionSelector getExtensionSelector(ExtensionSelectorType type) {
51 return null;
52 }
53}