Map map = jbosscacheService.getCacheNodeContent(fqn);
List<CacheEntity> result = new ArrayList<CacheEntity>();
Iterator iterator = map.keySet().iterator();
while(iterator.hasNext()) {
Object key = iterator.next();
result.add(new CacheEntity(key + "",map.get(key) + ""));
}
return result;
} catch (Exception e) {
throw new JBossCacheServiceInvokeException("Invoke EJB service error", e);
}