blob: ee50d01d888342ff5739dbbe47e5dc50de3f20b9 [file] [log] [blame]
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +05301/*
2 * Copyright 2017-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.flowspec.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 multi flow rule selector extensions.
25 */
26 public 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 }