Package org.apache.jackrabbit.spi
Interface Tree
-
- All Known Implementing Classes:
AbstractTree
public interface TreeInterface for building a hierarchy of JCR items on the SPI layer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TreeaddChild(Name childName, Name primaryTypeName, String uniqueId)voidaddProperty(NodeId parentId, Name propertyName, int propertyType, QValue value)voidaddProperty(NodeId parentId, Name propertyName, int propertyType, QValue[] values)NamegetName()NamegetPrimaryTypeName()StringgetUniqueId()
-
-
-
Method Detail
-
getName
Name getName()
-
getPrimaryTypeName
Name getPrimaryTypeName()
-
getUniqueId
String getUniqueId()
-
addProperty
void addProperty(NodeId parentId, Name propertyName, int propertyType, QValue value) throws RepositoryException
- Throws:
RepositoryException
-
addProperty
void addProperty(NodeId parentId, Name propertyName, int propertyType, QValue[] values) throws RepositoryException
- Throws:
RepositoryException
-
-