blob: 4cf7093b755bf2c52b7dfa5bde4065eb1cf99604 [file] [log] [blame]
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -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 */
16package org.onosproject.net.driver;
17
18import org.onosproject.net.MutableAnnotations;
19
20/**
21 * Container for data about a device. Data is stored using
22 * {@link org.onosproject.net.MutableAnnotations}.
23 */
24public interface DriverData extends MutableAnnotations {
25
26 /**
27 * Returns the parent device driver.
28 *
29 * @return device driver
30 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070031 Driver driver();
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080032
33 /**
34 * Returns the specified facet of behaviour to access the device data.
35 *
36 * @param behaviourClass behaviour class
37 * @param <T> type of behaviour
38 * @return requested behaviour or null if not supported
39 */
40 <T extends Behaviour> T behaviour(Class<T> behaviourClass);
41
42}