Package org.infoglue.cms.entities.structure.impl.simple

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


       
        QueryResults results = oql.execute(Database.READONLY);
     
        if(results.hasMore())
          {
        SmallSiteNodeImpl siteNode = (SmallSiteNodeImpl)results.next();
        siteNodeVO = siteNode.getValueObject();
        logger.info("Caching " + siteNodeVO.getId() + " on " + contentId);
        metaInfoSiteNodeIdMap.put(contentId, siteNodeVO.getId());
          }
 
      results.close();
View Full Code Here


      {
        logger.info("Changing creator from '" + currentModifier + "' to '" + newModifier + "' for number of SiteNodes: " + results.size());
      }
      while (results.hasMore())
      {
        SmallSiteNodeImpl sn = (SmallSiteNodeImpl)results.nextElement();
        sn.setCreator(newModifier);
        if (logger.isDebugEnabled())
        {
          logger.debug("Changing creator from '" + currentModifier + "' to '" + newModifier + "' for SiteNode with ID: " + sn.getSiteNodeId());
        }
      }

      results.close();
      oql.close();
View Full Code Here

TOP

Related Classes of org.infoglue.cms.entities.structure.impl.simple.SmallSiteNodeImpl

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.