• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Augmentation类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.opendaylight.yangtools.yang.binding.Augmentation的典型用法代码示例。如果您正苦于以下问题:Java Augmentation类的具体用法?Java Augmentation怎么用?Java Augmentation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Augmentation类属于org.opendaylight.yangtools.yang.binding包,在下文中一共展示了Augmentation类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: isSchemaAvailable

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
private static boolean isSchemaAvailable(final Class<?> clz, final BindingRuntimeContext context) {
    final Object schema;
    if (Augmentation.class.isAssignableFrom(clz)) {
        schema = context.getAugmentationDefinition(clz);
    } else {
        schema = context.getSchemaDefinition(clz);
    }
    return schema != null;
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:10,代码来源:FutureSchema.java


示例2: getAugmentation

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
protected A getAugmentation(Node node) {
    if (node == null) {
        return null;
    }
    ParameterizedType parameterizedType = (ParameterizedType) getClass().getGenericSuperclass();
    Class<? extends Augmentation<Node>> augType =
            (Class<? extends Augmentation<Node>>) parameterizedType.getActualTypeArguments()[1];
    Augmentation<Node> augmentation = node.getAugmentation(augType);
    return (A) augmentation;
}
 
开发者ID:opendaylight,项目名称:ovsdb,代码行数:11,代码来源:AbstractTransactCommand.java


示例3: path

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
public static <T extends DataObject & Augmentation<TopLevelList>> InstanceIdentifier<T> path(final TopLevelListKey key, final Class<T> augmentation) {
    return path(key).augmentation(augmentation);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:4,代码来源:ListsBindingUtils.java


示例4: getModifiedAugmentation

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public <C extends Augmentation<T> & DataObject> DataObjectModification<C> getModifiedAugmentation(
        final Class<C> augmentation) {
    return (DataObjectModification<C>) getModifiedChild(new InstanceIdentifier.Item<>(augmentation));
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:7,代码来源:LazyDataObjectModification.java


示例5: assertHasAugmentation

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
public AugmentationVerifier<T> assertHasAugmentation(Class<? extends Augmentation<T>> augmentation) {
    assertHasAugmentation(object, augmentation);
    return this;
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:5,代码来源:AugmentationVerifier.java


示例6: changesPerConnectionInstance

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
private Map<OvsdbConnectionInstance, Collection<DataTreeModification<Node>>> changesPerConnectionInstance(
        @Nonnull Collection<DataTreeModification<Node>> changes) {
    Map<OvsdbConnectionInstance, Collection<DataTreeModification<Node>>> result = new HashMap<>();
    for (DataTreeModification<Node> change : changes) {
        OvsdbConnectionInstance client = null;
        Node node = change.getRootNode().getDataAfter() != null
                ? change.getRootNode().getDataAfter() : change.getRootNode().getDataBefore();
        if (node != null) {
            InstanceIdentifier<Node> nodeIid;
            Augmentation nodeAug = node.getAugmentation(OvsdbNodeAugmentation.class) != null
                    ? node.getAugmentation(OvsdbNodeAugmentation.class)
                    : node.getAugmentation(OvsdbBridgeAugmentation.class);

            if (nodeAug instanceof OvsdbNodeAugmentation) {
                OvsdbNodeAugmentation ovsdbNode = (OvsdbNodeAugmentation) nodeAug;
                if (ovsdbNode.getConnectionInfo() != null) {
                    client = cm.getConnectionInstance(ovsdbNode.getConnectionInfo());
                } else {
                    client = cm.getConnectionInstance(SouthboundMapper.createInstanceIdentifier(node.getNodeId()));
                }
            }
            if (nodeAug instanceof OvsdbBridgeAugmentation) {
                OvsdbBridgeAugmentation bridgeAugmentation = (OvsdbBridgeAugmentation)nodeAug;
                if (bridgeAugmentation.getManagedBy() != null) {
                    nodeIid = (InstanceIdentifier<Node>) bridgeAugmentation.getManagedBy().getValue();
                    client = cm.getConnectionInstance(nodeIid);
                }
            }
            if (client == null) {
                //Try getting from change root identifier
                client = cm.getConnectionInstance(change.getRootPath().getRootIdentifier());
            }
        } else {
            LOG.warn("Following change don't have after/before data {}", change);
        }
        if (client != null) {
            LOG.debug("Found client for {}", node);
                /*
                 * As of now data change sets are processed by single thread, so we can assume that device will
                 * be connected and ownership will be decided before sending any instructions down to the device.
                 * Note:Processing order in onDataChange() method should not change. If processing is changed to
                 * use multiple thread, we might need to take care of corner cases, where ownership is not decided
                 * but transaction are ready to go to switch. In that scenario, either we need to queue those task
                 * till ownership is decided for that specific device.
                 * Given that each DataChangeNotification is notified through separate thread, so we are already
                 * multi threaded and i don't see any need to further parallelism per DataChange
                 * notifications processing.
                 */
            if (cm.getHasDeviceOwnership(client.getMDConnectionInfo())) {
                LOG.debug("*This* instance of southbound plugin is an owner of the device {}", node);
                result.computeIfAbsent(client, key -> new ArrayList<>()).add(change);
            } else {
                LOG.debug("*This* instance of southbound plugin is *not* an owner of the device {}", node);
            }
        } else {
            LOG.debug("Did not find client for {}", node);
        }
    }

    return result;
}
 
开发者ID:opendaylight,项目名称:ovsdb,代码行数:62,代码来源:OvsdbDataTreeChangeListener.java


示例7: testNodeAdded

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
@Test
public void testNodeAdded() {
    GetFeaturesOutputBuilder featuresBuilder = new GetFeaturesOutputBuilder();
    GetFeaturesOutput features = featuresBuilder.build();
    Mockito.stub(registry.getDatapathID(connectionAdapter)).toReturn(new BigInteger("1"));
    Mockito.stub(registry.getFeaturesOutput(connectionAdapter)).toReturn(features);
    Mockito.stub(connectionAdapter.getRemoteAddress()).toReturn(new InetSocketAddress(1));

    NodeUpdatedBuilder builder = new NodeUpdatedBuilder();
    String current = String.valueOf(new BigInteger("1"));
    builder.setId(new NodeId("openflow:" + current));
    InstanceIdentifier<Node> identifier = connectionHandler.identifierFromDatapathId(new BigInteger("1"));
    builder.setNodeRef(new NodeRef(identifier));

    FlowCapableNodeUpdatedBuilder builder2 = new FlowCapableNodeUpdatedBuilder();
    try {
        builder2.setIpAddress(resolveIpAddress(new InetSocketAddress(1).getAddress()));
    } catch (Exception e) {
        e.printStackTrace();
    }

    SwitchFeatures swFeatures = new SwitchFeatures() {

        @Override
        public <E extends Augmentation<SwitchFeatures>> E getAugmentation(Class<E> arg0) {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public Class<? extends DataContainer> getImplementedInterface() {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public Short getMaxTables() {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public Long getMaxBuffers() {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public List<Class<? extends FeatureCapability>> getCapabilities() {
            // TODO Auto-generated method stub
            return null;
        }
    };

    SwitchFeaturesUtil swFeaturesUtil = SwitchFeaturesUtil.getInstance();

    builder2.setSwitchFeatures(swFeaturesUtil.buildSwitchFeatures(features));
    builder.addAugmentation(FlowCapableNodeUpdated.class, builder2.build());

    Assert.assertEquals(builder.build(), connectionHandler.nodeAdded(connectionAdapter));
}
 
开发者ID:fp7-netide,项目名称:Engine,代码行数:62,代码来源:ShimSwitchConnectionHandlerImplTest.java


示例8: augmentationTypeFor

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
public static ParameterizedType augmentationTypeFor(Type valueType) {
    final Type augmentation = typeForClass(Augmentation.class);
    return parameterizedTypeFor(augmentation, valueType);
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:5,代码来源:Types.java


示例9: getModifiedAugmentation

import org.opendaylight.yangtools.yang.binding.Augmentation; //导入依赖的package包/类
/**
 * Returns augmentation child modification if {@code augmentation} was modified by this
 * modification.
 *
 * For accessing all modified list items consider iterating over {@link #getModifiedChildren()}.
 *
 * @param augmentation Type of augmentation - must be only container
 * @return Modification of {@code augmentation} if {@code augmentation} was modified, null otherwise.
 * @throws IllegalArgumentException If supplied {@code augmentation} class is not valid augmentation
 *         according to generated model.
 */
@Nullable <C extends Augmentation<T> & DataObject> DataObjectModification<C> getModifiedAugmentation(@Nonnull Class<C> augmentation);
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:13,代码来源:DataObjectModification.java



注:本文中的org.opendaylight.yangtools.yang.binding.Augmentation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Pet类代码示例发布时间:2022-05-22
下一篇:
Java MatcherContext类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap