Examples of SiteNodeVO


Examples of org.infoglue.cms.entities.structure.SiteNodeVO

  public String getSiteNodeIdPath(Integer siteNodeId) throws Exception
  {
    StringBuffer sb = new StringBuffer();
   
    SiteNodeVO siteNodeVO = getSiteNodeVOWithId(siteNodeId);
    sb.insert(0, siteNodeVO.getId());
    while(siteNodeVO != null && siteNodeVO.getParentSiteNodeId() != null)
    {
      sb.insert(0, siteNodeVO.getParentSiteNodeId() + ",");
      if(siteNodeVO.getParentSiteNodeId() != null)
        siteNodeVO = getSiteNodeVOWithId(siteNodeVO.getParentSiteNodeId());
      else
        siteNodeVO = null;
    }
     
    return sb.toString();
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.