com.raritantechnologies.jcr
Class JCRTreeBuilder

java.lang.Object
  extended bycom.raritantechnologies.jcr.JCRTreeBuilder
All Implemented Interfaces:
IConfigurable, ITreeBuilder

public class JCRTreeBuilder
extends java.lang.Object
implements ITreeBuilder

Builds a Tree representation of content in a JCR-compliant Content Management System.

XML Configuration Template:
   <TreeBuilder class="com.raritantechnologies.jcr.JCRTreeBuilder"
                   jcrConnectionManager="[ name of JCRConnectionManager system object ]"
                   baseNodePath="[ base path within CMS to the content to be extracted ]" >

      <!-- Can define JCRConnectionManager locally: -->
      <JCRConnectionManager initialContextFactory="[ JNDI initial context factory name ]"
                               envContext="[ JNDI env Context ]"
                               repositoryName="[ JCR repository name ]" />

      <!-- Optional list of properties to extract from the CMS. -->
      <ExtractedProperties>

      </ExtractedProperties>

   </TreeBuilder>
 


Field Summary
 
Fields inherited from interface com.raritantechnologies.utils.tree.ITreeBuilder
TEMPLATE
 
Constructor Summary
JCRTreeBuilder()
           
 
Method Summary
 TreeRoot buildTree(RaritanPageContext pContext)
           
 void initialize(org.w3c.dom.Element elem)
          Initializes the object from an XML tag or element.
 TreeRoot refreshTree(TreeRoot tree, RaritanPageContext pContext)
          Method to enable dynamic or refreshable trees.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JCRTreeBuilder

public JCRTreeBuilder()
Method Detail

buildTree

public TreeRoot buildTree(RaritanPageContext pContext)
Specified by:
buildTree in interface ITreeBuilder

refreshTree

public TreeRoot refreshTree(TreeRoot tree,
                            RaritanPageContext pContext)
Description copied from interface: ITreeBuilder

Method to enable dynamic or refreshable trees. Static tree builders should implement this by returning the passed in tree object. Dynamic tree builders should implement this by returning the output of their buildTree( ) method or by pruning/growing the given tree as appropriate.

ITreeBuilders that support "lazy tree node evaluation" should use this method to determine which nodes in the tree need to be updated (TreeNode.needsUpdate( ) method returns true.

Specified by:
refreshTree in interface ITreeBuilder

initialize

public void initialize(org.w3c.dom.Element elem)
Description copied from interface: IConfigurable
Initializes the object from an XML tag or element. This method is called by the Framework as part of the application initializtion. see ConfigurationManager, XMLConfigurationManager, XMLSearchFieldMapFactory, XMLSearchSourceFactory. Configurable objects that are owned or contained by other configurable objects will be initialized in by the parent object.

Specified by:
initialize in interface IConfigurable