Examples of SmallestSiteNodeImpl


Examples of org.infoglue.cms.entities.structure.impl.simple.SmallestSiteNodeImpl

 
      QueryResults results = oql.execute(Database.READONLY);
      //t.printElapsedTime("Executed query.....");
      if (results.hasMore())
      {
        SmallestSiteNodeImpl siteNode = (SmallestSiteNodeImpl)results.next();
        //System.out.println("siteNode:" + siteNode.getSiteNodeVersionId() + ":" + siteNode.getValueObject().getSiteNodeVersionId() + ":" + siteNode.getValueObject().getVersionModifier() + ":" + siteNode.getValueObject().getModifiedDateTime());
        siteNodeVO = siteNode.getValueObject();     
 
        String siteNodeCacheKey = "" + siteNode.getValueObject().getId();
        CacheController.cacheObjectInAdvancedCache("siteNodeCacheWithLatestVersion", siteNodeCacheKey, siteNode.getValueObject(), new String[]{CacheController.getPooledString(3, siteNode.getValueObject().getId())}, true);
      }
     
      results.close();
      oql.close();
     
View Full Code Here

Examples of org.infoglue.cms.entities.structure.impl.simple.SmallestSiteNodeImpl

    QueryResults results = oql.execute(Database.READONLY);
    //t.printElapsedTime("Executed query.....");
    while (results.hasMore())
    {
      SmallestSiteNodeImpl siteNode = (SmallestSiteNodeImpl)results.next();
      SiteNodeVO siteNodeVO = siteNode.getValueObject();     
      siteNodeVOMap.put(siteNodeVO.getSiteNodeVersionId(), siteNodeVO);
    }
    //t.printElapsedTime("siteNodeVOMap populated:" + siteNodeVOMap.size());

    results.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.