Package com.kylin.jbosscache.custom.gwt.shared

Examples of com.kylin.jbosscache.custom.gwt.shared.CacheEntity


      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);
    }
View Full Code Here

TOP

Related Classes of com.kylin.jbosscache.custom.gwt.shared.CacheEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.