本文整理汇总了Java中org.jboss.cache.Node类的典型用法代码示例。如果您正苦于以下问题:Java Node类的具体用法?Java Node怎么用?Java Node使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Node类属于org.jboss.cache包,在下文中一共展示了Node类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getTickets
import org.jboss.cache.Node; //导入依赖的package包/类
@Override
public Collection<Ticket> getTickets() {
try {
final Node<String, Ticket> node = this.cache.getNode(FQN_TICKET);
if (node == null) {
return Collections.emptyList();
}
final Set<String> keys = node.getKeys();
final List<Ticket> list = new ArrayList<>();
for (final String key : keys) {
/** Returns null if the node contains no mapping for this key. **/
final Ticket ticket = node.get(key);
if (ticket != null) {
list.add(node.get(key));
}
}
return list;
} catch (final CacheException e) {
return Collections.emptyList();
}
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:28,代码来源:JBossCacheTicketRegistry.java
示例2: getTickets
import org.jboss.cache.Node; //导入依赖的package包/类
@Override
public Collection<Ticket> getTickets() {
try {
final Node<String, Ticket> node = this.cache.getNode(FQN_TICKET);
if (node == null) {
return Collections.emptyList();
}
final Set<String> keys = node.getKeys();
final List<Ticket> list = new ArrayList<Ticket>();
for (final String key : keys) {
/** Returns null if the node contains no mapping for this key. **/
final Ticket ticket = node.get(key);
if (ticket != null) {
list.add(node.get(key));
}
}
return list;
} catch (final CacheException e) {
return Collections.emptyList();
}
}
开发者ID:luotuo,项目名称:cas4.0.x-server-wechat,代码行数:28,代码来源:JBossCacheTicketRegistry.java
示例3: getAll
import org.jboss.cache.Node; //导入依赖的package包/类
@Override
public List<V> getAll() {
Node<String, Object> cache = getCache().getNode(Fqn.fromString(_cacheName));
ArrayList<V> list = new ArrayList<>();
if (cache != null) {
populateValues(cache, list);
}
return list;
}
开发者ID:Verigreen,项目名称:verigreen,代码行数:12,代码来源:EntityContainer.java
示例4: populateValues
import org.jboss.cache.Node; //导入依赖的package包/类
private void populateValues(Node<String, Object> cache, ArrayList<V> list) {
Set<Node<String, Object>> children = cache.getChildren();
for (Node<String, Object> node : children) {
Iterator<String> iterator = node.getKeys().iterator();
if (iterator.hasNext()) {
String key = iterator.next();
V value = RuntimeUtils.<V> cast(node.get(key));
list.add(getClonedValue(value));
}
}
}
开发者ID:Verigreen,项目名称:verigreen,代码行数:13,代码来源:EntityContainer.java
注:本文中的org.jboss.cache.Node类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论