本文整理汇总了Java中org.opendaylight.controller.sal.connection.ConnectionConstants类的典型用法代码示例。如果您正苦于以下问题:Java ConnectionConstants类的具体用法?Java ConnectionConstants怎么用?Java ConnectionConstants使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ConnectionConstants类属于org.opendaylight.controller.sal.connection包,在下文中一共展示了ConnectionConstants类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: connect
import org.opendaylight.controller.sal.connection.ConnectionConstants; //导入依赖的package包/类
@Override
public Node connect (String connectionIdentifier, Map<ConnectionConstants, String> params) {
synchronized (this.pluginService) {
for (String pluginType : this.pluginService.keySet()) {
IPluginInConnectionService s = pluginService.get(pluginType);
Node node = s.connect(connectionIdentifier, params);
if (node != null) return node;
}
}
return null;
}
示例2: connect
import org.opendaylight.controller.sal.connection.ConnectionConstants; //导入依赖的package包/类
@Override
public Node connect(String connectionIdentifier, Map<ConnectionConstants, String> params) {
if (connectionService == null) return null;
return connectionService.connect(connectionIdentifier, params);
}
示例3: connect
import org.opendaylight.controller.sal.connection.ConnectionConstants; //导入依赖的package包/类
@Override
public Node connect(String connectionIdentifier, Map<ConnectionConstants, String> params) {
return null;
}
示例4: connect
import org.opendaylight.controller.sal.connection.ConnectionConstants; //导入依赖的package包/类
/**
* Connect to a node
*
* @param connectionIdentifier identifier with which the application would refer to a given connection.
* @param params Connection Params in Map format. This is entirely handled by the south-bound
* plugins and is an opaque value for SAL or Connection Manager. Typical values keyed inside
* this params are Management IP-Address, Username, Password, Security Keys, etc...
*
* @return Node Node connected to.
*/
public Node connect (String connectionIdentifier, Map<ConnectionConstants, String> params);