blob: 0b8876e2e6739a7a3fcaa7afd3299002bd6a3c9c [file] [log] [blame]
Thejaswi N K46f36d22016-06-13 21:02:50 +05301/*
2 * Copyright 2016-present 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.driver.extensions;
17
18import org.onosproject.net.behaviour.ExtensionSelectorResolver;
19import org.onosproject.net.driver.AbstractHandlerBehaviour;
20import org.onosproject.net.flow.criteria.ExtensionSelector;
21import org.onosproject.net.flow.criteria.ExtensionSelectorType;
22
23/**
24 * Interpreter for bgp selector extensions.
25 */
26public class MultiExtensionSelectorInterpreter
27 extends AbstractHandlerBehaviour
28 implements ExtensionSelectorResolver {
29
30 @Override
31 public ExtensionSelector getExtensionSelector(ExtensionSelectorType type) {
32 if (type.equals(ExtensionSelectorType.ExtensionSelectorTypes.EXT_MATCH_FLOW_TYPE.type())) {
33 return new ExtMatchExtension();
34 }
35 return null;
36 }
37}