Package org.onosproject.net.driver
Interface DriverPrimordialResolver
-
- All Known Subinterfaces:
DriverAdminService
,DriverRegistry
,DriverService
public interface DriverPrimordialResolver
Entity capable of resolving a driver using the primordial information of the manufacturer, hardware name/version and software version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Driver
getDriver(java.lang.String mfr, java.lang.String hw, java.lang.String sw)
Returns the driver that matches the specified primordial device discovery information.
-
-
-
Method Detail
-
getDriver
Driver getDriver(java.lang.String mfr, java.lang.String hw, java.lang.String sw)
Returns the driver that matches the specified primordial device discovery information.- Parameters:
mfr
- device manufacturerhw
- device hardware name/versionsw
- device software version- Returns:
- driver or null of no matching one is found
-
-