blob: 24d60ea6160b2fdcc1c5d09b9e71c6eec4bdb7d7 [file] [log] [blame]
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -08003 *
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/**
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080022 * Container for data about an entity, e.g. device, link. Data is stored using
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080023 * {@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 *
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080048 * Implementations are expected to defer to the backing driver for creation
49 * of the requested behaviour.
50 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080051 * @param behaviourClass behaviour class
52 * @param <T> type of behaviour
53 * @return requested behaviour or null if not supported
54 */
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080055 default <T extends Behaviour> T behaviour(Class<T> behaviourClass) {
56 return driver().createBehaviour(this, behaviourClass);
57 }
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080058
59}