Interface ObjectPersisterFactory
-
- All Known Implementing Classes:
ConfluenceUserPersisterFactory,ContentPropertyPersisterFactory,DelegatingObjectPersisterFactory,HibernateContentPermissionPersisterFactory,HibernateKeyPersisterFactory,HibernateMembershipPersisterFactory,PropertySetItemPersisterFactory,ReflectiveObjectPersisterFactory,SynchronyEventsPersisterFactory,SynchronySnapshotsPersisterFactory
@Deprecated public interface ObjectPersisterFactory
Deprecated.since 7.17.0.Factory to provide the correctObjectPersisterfor a givenImportedObject. This allows the backup importer to substitute custom persisters for particular object types where the default reflective persister can not handle the object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ObjectPersistercreatePersisterFor(ImportedObject importedObject)Deprecated.Creates a new persister for the givenImportedObject.
-
-
-
Method Detail
-
createPersisterFor
ObjectPersister createPersisterFor(ImportedObject importedObject)
Deprecated.Creates a new persister for the givenImportedObject.- Parameters:
importedObject- the object to persist.- Returns:
- the matching
ObjectPersister, or null if none could be found.
-
-