Interface NodeTypesCollector
-
- All Known Subinterfaces:
AggregateManager
- All Known Implementing Classes:
AggregateManagerImpl
public interface NodeTypesCollector
NodeTypesCollector
...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addNodeTypes(javax.jcr.Node node)
Add the primary and mixin node types of that node to the internal set of used node types.Set<String>
getNodeTypes()
Returns the node types used in the aggregates (so far).
-
-
-
Method Detail
-
getNodeTypes
Set<String> getNodeTypes()
Returns the node types used in the aggregates (so far).- Returns:
- node types
-
addNodeTypes
void addNodeTypes(javax.jcr.Node node) throws javax.jcr.RepositoryException
Add the primary and mixin node types of that node to the internal set of used node types.- Parameters:
node
- the node- Throws:
javax.jcr.RepositoryException
- if an error occurs
-
-