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


Java BindingReflections.getModuleInfo方法代码示例

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


在下文中一共展示了BindingReflections.getModuleInfo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadSchemas

import org.opendaylight.yangtools.yang.binding.util.BindingReflections; //导入方法依赖的package包/类
public void loadSchemas(final Class<?>... classes) {
    YangModuleInfo moduleInfo;
    try {
        final ModuleInfoBackedContext context = ModuleInfoBackedContext.create();
        for (final Class<?> clz : classes) {
            moduleInfo = BindingReflections.getModuleInfo(clz);

            context.registerModuleInfo(moduleInfo);
        }
        this.schemaContext = context.tryToCreateSchemaContext().get();
        this.domStore.onGlobalContextUpdated(this.schemaContext);
    } catch (final Exception e) {
        Throwables.propagateIfPossible(e);
    }
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:16,代码来源:SchemaUpdateForTransactionTest.java

示例2: setup

import org.opendaylight.yangtools.yang.binding.util.BindingReflections; //导入方法依赖的package包/类
@Before
public final void setup() throws Exception {
    final YangModuleInfo moduleInfo = BindingReflections
            .getModuleInfo(TwoLevelList.class);
    final ModuleInfoBackedContext context = ModuleInfoBackedContext.create();
    context.registerModuleInfo(moduleInfo);
    this.schemaContext = context.tryToCreateSchemaContext().get();

    this.dclExecutorService = new TestDCLExecutorService(
            SpecialExecutors.newBlockingBoundedFastThreadPool(1, 10, "DCL" ));

    this.datastore = new InMemoryDOMDataStore("TEST", this.dclExecutorService);
    this.datastore.onGlobalContextUpdated(this.schemaContext);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:15,代码来源:AbstractDataChangeListenerTest.java

示例3: getModuleInfos

import org.opendaylight.yangtools.yang.binding.util.BindingReflections; //导入方法依赖的package包/类
@Override
protected Iterable<YangModuleInfo> getModuleInfos() throws Exception {
    Builder<YangModuleInfo> moduleInfoSet = ImmutableSet.<YangModuleInfo>builder();
    for (Class<?> moduleClass : ImmutableList.<Class<?>>of(
        NetworkTopology.class, Neutron.class, NetconfNode.class)) {
        YangModuleInfo moduleInfo = BindingReflections.getModuleInfo(moduleClass);
        Preconditions.checkNotNull(moduleInfo, "Module Info for %s is not available.", moduleClass);
        collectYangModuleInfo(moduleInfo, moduleInfoSet);
    }
    return moduleInfoSet.build();
}
 
开发者ID:opendaylight,项目名称:neutron,代码行数:12,代码来源:HostconfigsDataBrokerTest.java


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