Package org.apache.jackrabbit.server.io
Class PropertyManagerImpl
- java.lang.Object
- 
- org.apache.jackrabbit.server.io.PropertyManagerImpl
 
- 
- All Implemented Interfaces:
- PropertyManager
 
 public class PropertyManagerImpl extends Object implements PropertyManager PropertyManagerImpl...
- 
- 
Constructor SummaryConstructors Constructor Description PropertyManagerImpl()Create a newPropertyManagerImpl.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPropertyHandler(PropertyHandler propertyHandler)Map<? extends PropEntry,?>alterProperties(PropertyImportContext context, boolean isCollection)booleanexportProperties(PropertyExportContext context, boolean isCollection)static PropertyManagergetDefaultManager()PropertyHandler[]getPropertyHandlers()
 
- 
- 
- 
Constructor Detail- 
PropertyManagerImplpublic PropertyManagerImpl() Create a newPropertyManagerImpl. Note, that this manager does not define anyPropertyHandlers by default. UseaddPropertyHandler(PropertyHandler)in order to populate the internal list of handlers that are called forimportPropertiesandexportPropertiesrespectively. SeegetDefaultManager()for an instance of this class populated with default handlers.
 
- 
 - 
Method Detail- 
exportPropertiespublic boolean exportProperties(PropertyExportContext context, boolean isCollection) throws RepositoryException - Specified by:
- exportPropertiesin interface- PropertyManager
- Throws:
- RepositoryException
- See Also:
- PropertyManager.exportProperties(PropertyExportContext, boolean)
 
 - 
alterPropertiespublic Map<? extends PropEntry,?> alterProperties(PropertyImportContext context, boolean isCollection) throws RepositoryException - Specified by:
- alterPropertiesin interface- PropertyManager
- Throws:
- RepositoryException
- See Also:
- PropertyManager.alterProperties(PropertyImportContext, boolean)
 
 - 
addPropertyHandlerpublic void addPropertyHandler(PropertyHandler propertyHandler) - Specified by:
- addPropertyHandlerin interface- PropertyManager
- See Also:
- PropertyManager.addPropertyHandler(PropertyHandler)
 
 - 
getPropertyHandlerspublic PropertyHandler[] getPropertyHandlers() - Specified by:
- getPropertyHandlersin interface- PropertyManager
- See Also:
- PropertyManager.getPropertyHandlers()
 
 - 
getDefaultManagerpublic static PropertyManager getDefaultManager() - Returns:
- an instance of PropertyManager populated with default handlers.
 
 
- 
 
-