Package org.apache.jackrabbit.core.xml
Interface ProtectedPropertyImporter
- 
- All Superinterfaces:
 ProtectedItemImporter
- All Known Implementing Classes:
 AccessControlImporter,DefaultProtectedItemImporter,DefaultProtectedNodeImporter,DefaultProtectedPropertyImporter,UserImporter
public interface ProtectedPropertyImporter extends ProtectedItemImporter
ProtectedPropertyImporteris in charge of importing single properties with a protectedQPropertyDefinition. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandlePropInfo(NodeImpl parent, PropInfo protectedPropInfo, QPropertyDefinition def)Handles a single protected property.booleanhandlePropInfo(NodeState parent, PropInfo protectedPropInfo, QPropertyDefinition def)Handles a single protected property.- 
Methods inherited from interface org.apache.jackrabbit.core.xml.ProtectedItemImporter
init, processReferences 
 - 
 
 - 
 
- 
- 
Method Detail
- 
handlePropInfo
boolean handlePropInfo(NodeImpl parent, PropInfo protectedPropInfo, QPropertyDefinition def) throws RepositoryException
Handles a single protected property.- Parameters:
 parent- The affected parent node.protectedPropInfo- ThePropInfoto be imported.def- The property definition determined by the importer that calls this method.- Returns:
 trueIf the property could be successfully imported;falseotherwise.- Throws:
 RepositoryException- If an error occurs.
 
- 
handlePropInfo
boolean handlePropInfo(NodeState parent, PropInfo protectedPropInfo, QPropertyDefinition def) throws RepositoryException
Handles a single protected property.- Parameters:
 parent- The affected parent node.protectedPropInfo- ThePropInfoto be imported.def- The property definition determined by the importer that calls this method.- Returns:
 trueIf the property could be successfully imported;falseotherwise.- Throws:
 RepositoryException- If an error occurs.
 
 - 
 
 -