本文整理汇总了Java中org.opendaylight.controller.configuration.IConfigurationContainerService类的典型用法代码示例。如果您正苦于以下问题:Java IConfigurationContainerService类的具体用法?Java IConfigurationContainerService怎么用?Java IConfigurationContainerService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IConfigurationContainerService类属于org.opendaylight.controller.configuration包,在下文中一共展示了IConfigurationContainerService类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configureInstance
import org.opendaylight.controller.configuration.IConfigurationContainerService; //导入依赖的package包/类
/**
* Function that is called when configuration of the dependencies
* is required.
*
* @param c dependency manager Component object, used for
* configuring the dependencies exported and imported
* @param imp Implementation class that is being configured,
* needed as long as the same routine can configure multiple
* implementations
* @param containerName The containerName being configured, this allow
* also optional per-container different behavior if needed, usually
* should not be the case though.
*/
public void configureInstance(Component c, Object imp, String containerName) {
if (imp.equals(ConfigurationContainerImpl.class)) {
// export the service
c.setInterface(new String[] {
IConfigurationContainerService.class.getName(),
IConfigurationAware.class.getName() }, null);
c.add(createContainerServiceDependency(containerName).setService(
IConfigurationContainerAware.class).setCallbacks(
"addConfigurationContainerAware",
"removeConfigurationContainerAware").setRequired(false));
}
}