当前位置: 首页>>代码示例>>Java>>正文


Java BasicDeviceConfig.type方法代码示例

本文整理汇总了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);
}
 
开发者ID:shlee89,项目名称:athena,代码行数:40,代码来源:BasicDeviceOperator.java

示例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);
}
 
开发者ID:opennetworkinglab,项目名称:onos,代码行数:41,代码来源:BasicDeviceOperator.java


注:本文中的org.onosproject.net.config.basics.BasicDeviceConfig.type方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。