blob: 54cbc7ac4ef2305682374f6aea02a0dc23c2d633 [file] [log] [blame]
Jonathan Hart3c259162015-10-21 21:31:19 -07001/*
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.net.behaviour;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.driver.HandlerBehaviour;
21import org.onosproject.net.flow.instructions.ExtensionInstruction;
22import org.onosproject.net.flow.instructions.ExtensionType;
23
24/**
25 * Provides access to the extension implemented by this driver.
26 */
27@Beta
28public interface ExtensionResolver extends HandlerBehaviour {
29
30 /**
31 * Gets an extension instruction instance of the specified type, if supported
32 * by the driver.
33 *
34 * @param type type of extension to get
35 * @return extension instruction
36 * @throws UnsupportedOperationException if the extension type is not
37 * supported by this driver
38 */
39 ExtensionInstruction getExtensionInstruction(ExtensionType type);
40}