blob: 64f1fd990653f0dd9510fc7933a36a8eff83cc19 [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
Thomas Vachuska80b0a802015-07-17 08:43:30 -070018import org.onosproject.net.DeviceId;
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080019import org.onosproject.net.MutableAnnotations;
20
21/**
22 * Container for data about a device. Data is stored using
23 * {@link org.onosproject.net.MutableAnnotations}.
Thomas Vachuska7b3fe3a2016-02-01 11:26:22 -080024 *
25 * Note that only derivatives of {@link HandlerBehaviour} can expect mutability
26 * from the backing driver data instance; other behaviours must rely on
27 * immutable {@link org.onosproject.net.Annotations} only.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080028 */
29public interface DriverData extends MutableAnnotations {
30
31 /**
32 * Returns the parent device driver.
33 *
34 * @return device driver
35 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070036 Driver driver();
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080037
38 /**
Thomas Vachuska80b0a802015-07-17 08:43:30 -070039 * Returns the device identifier.
40 *
41 * @return device identifier
42 */
43 DeviceId deviceId();
44
45 /**
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080046 * Returns the specified facet of behaviour to access the device data.
47 *
48 * @param behaviourClass behaviour class
49 * @param <T> type of behaviour
50 * @return requested behaviour or null if not supported
51 */
52 <T extends Behaviour> T behaviour(Class<T> behaviourClass);
53
54}