Package org.infoglue.cms.treeservice.ss

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


      {
        sup = new ContentNodeVersionSupplier(getRepositoryId(), this.getInfoGluePrincipal().getName());
      }
      else
      {
        ContentNodeSupplier contentNodeSupplier = new ContentNodeSupplier(getRepositoryId(), this.getInfoGluePrincipal());
        contentNodeSupplier.setShowLeafs(showLeafs.compareTo("yes")==0);
        contentNodeSupplier.setAllowedContentTypeIds(allowedContentTypeIds);
        sup = contentNodeSupplier;
      }
     
      String treeMode = CmsPropertyHandler.getTreeMode();
      if(treeMode != null)
View Full Code Here


  private Integer languageId;
  private boolean enableCompression = false;

  public INodeSupplier getNodeSupplier() throws SystemException
  {
    ContentNodeSupplier sup =  new ContentNodeSupplier(getRepositoryId(), this.getInfoGluePrincipal());
    sup.setShowLeafs(showLeafs.compareTo("yes")==0);   
    sup.setAllowedContentTypeIds(allowedContentTypeIds);
    return sup;
  }
View Full Code Here

  private boolean useTemplate = false;
  private String[] allowedContentTypeIds = null;

  public INodeSupplier getNodeSupplier() throws SystemException
  {
    return new ContentNodeSupplier(getRepositoryId(), this.getInfoGluePrincipal());
  }
View Full Code Here

TOP

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

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.