Package com.dotcms.repackage.org.jboss.cache

Examples of com.dotcms.repackage.org.jboss.cache.NodeSPI


    String result = "";
    Set<Object> os = ((com.dotcms.repackage.org.jboss.cache.NodeSPI)cache.getRoot().getChild(cache.getRoot().getFqn())).getChildrenNames();
    List<String> ret=new ArrayList<String>();
    for (Object o : os) {
      try{
        NodeSPI nodeSPI=(com.dotcms.repackage.org.jboss.cache.NodeSPI)cache.getRoot().getChild(o);
        int s =nodeSPI.getChildren().size();
        ret.add( o.toString() + " " + s  );
      }catch (Exception e) {
        Logger.warn(this, e.getMessage(),e);
      }
    }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.jboss.cache.NodeSPI

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.