Package org.infoglue.cms.treeservice.ss

Examples of org.infoglue.cms.treeservice.ss.SiteNodeNodeSupplier


  /* (non-Javadoc)
   * @see org.infoglue.cms.applications.common.actions.SimpleXmlServiceAction#getNodeSupplier()
   */
  public INodeSupplier getNodeSupplier() throws SystemException {
      if(this.repositoryId != null && this.repositoryId.intValue() > -1)
          return new SiteNodeNodeSupplier(getRepositoryId(), this.getInfoGluePrincipal(), this.getSortLanguageId());
      else
          return null;
  }
View Full Code Here


    {
      String treeMode = CmsPropertyHandler.getTreeMode();
      if(treeMode != null) {
        setTreeMode(treeMode);
      }
      SiteNodeNodeSupplier sup = new SiteNodeNodeSupplier(getRepositoryId(), this.getInfoGluePrincipal(), sortLanguageId);
      rootNode = sup.getRootNode();
      return sup;
    }
    else
    {
      return null;
View Full Code Here

TOP

Related Classes of org.infoglue.cms.treeservice.ss.SiteNodeNodeSupplier

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.