blob: 6e8a3544f4489e6480e3c1c23968a71fead8f506 [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
18/**
19 * Representation of context for interacting with a device.
20 */
21public interface DriverHandler {
22
23 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070024 * Returns the parent device driver.
25 *
26 * @return device driver
27 */
28 Driver driver();
29
30 /**
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080031 * Returns the device driver data.
32 *
33 * @return device driver data
34 */
35 DriverData data();
36
37 /**
38 * Returns the specified facet of behaviour to interact with the device.
39 *
40 * @param behaviourClass behaviour class
41 * @param <T> type of behaviour
42 * @return behaviour
43 */
44 <T extends Behaviour> T behaviour(Class<T> behaviourClass);
45
46}