本文整理汇总了Java中org.onosproject.net.config.basics.BasicDeviceConfig.type方法的典型用法代码示例。如果您正苦于以下问题:Java BasicDeviceConfig.type方法的具体用法?Java BasicDeviceConfig.type怎么用?Java BasicDeviceConfig.type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.onosproject.net.config.basics.BasicDeviceConfig
的用法示例。
在下文中一共展示了BasicDeviceConfig.type方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: combine
import org.onosproject.net.config.basics.BasicDeviceConfig; //导入方法依赖的package包/类
/**
* Generates a DeviceDescription containing fields from a DeviceDescription and
* a DeviceConfig.
*
* @param bdc the device config entity from network config
* @param descr a DeviceDescription
* @return DeviceDescription based on both sources
*/
public static DeviceDescription combine(BasicDeviceConfig bdc, DeviceDescription descr) {
if (bdc == null || descr == null) {
return descr;
}
Device.Type type = descr.type();
if (bdc.type() != null && bdc.type() != type) {
type = bdc.type();
}
String manufacturer = descr.manufacturer();
if (bdc.manufacturer() != null && !bdc.manufacturer().equals(manufacturer)) {
manufacturer = bdc.manufacturer();
}
String hwVersion = descr.hwVersion();
if (bdc.hwVersion() != null && !bdc.hwVersion().equals(hwVersion)) {
hwVersion = bdc.hwVersion();
}
String swVersion = descr.swVersion();
if (bdc.swVersion() != null && !bdc.swVersion().equals(swVersion)) {
swVersion = bdc.swVersion();
}
String serial = descr.serialNumber();
if (bdc.serial() != null && !bdc.serial().equals(serial)) {
serial = bdc.serial();
}
SparseAnnotations sa = combine(bdc, descr.annotations());
return new DefaultDeviceDescription(descr.deviceUri(), type, manufacturer,
hwVersion, swVersion,
serial, descr.chassisId(), sa);
}
示例2: combine
import org.onosproject.net.config.basics.BasicDeviceConfig; //导入方法依赖的package包/类
/**
* Generates a DeviceDescription containing fields from a DeviceDescription and
* a DeviceConfig.
*
* @param cfg the device config entity from network config
* @param descr a DeviceDescription
* @return DeviceDescription based on both sources
*/
public static DeviceDescription combine(BasicDeviceConfig cfg, DeviceDescription descr) {
if (cfg == null || descr == null) {
return descr;
}
Device.Type type = descr.type();
if (cfg.type() != null && cfg.type() != type) {
type = cfg.type();
}
String manufacturer = descr.manufacturer();
if (cfg.manufacturer() != null && !cfg.manufacturer().equals(manufacturer)) {
manufacturer = cfg.manufacturer();
}
String hwVersion = descr.hwVersion();
if (cfg.hwVersion() != null && !cfg.hwVersion().equals(hwVersion)) {
hwVersion = cfg.hwVersion();
}
String swVersion = descr.swVersion();
if (cfg.swVersion() != null && !cfg.swVersion().equals(swVersion)) {
swVersion = cfg.swVersion();
}
String serial = descr.serialNumber();
if (cfg.serial() != null && !cfg.serial().equals(serial)) {
serial = cfg.serial();
}
SparseAnnotations sa = combine(cfg, descr.annotations());
return new DefaultDeviceDescription(descr.deviceUri(), type, manufacturer,
hwVersion, swVersion,
serial, descr.chassisId(),
descr.isDefaultAvailable(), sa);
}