Package com.logicaldoc.core.folder
Class FolderInitializer
java.lang.Object
com.logicaldoc.core.metadata.initialization.Initializer
com.logicaldoc.core.folder.FolderInitializer
- All Implemented Interfaces:
FolderListener
This listener takes care of initializing the metadata of a folder.
- Since:
- 8.8.2
- Author:
- Marco Meschieri - LogicalDOC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterStore
(Folder document, FolderHistory transaction, Map<String, Object> dictionary) Called after a folder is stored in the databasevoid
beforeStore
(Folder folder, FolderHistory transaction, Map<String, Object> dictionary) Called before a folder is stored in the databaseMethods inherited from class com.logicaldoc.core.metadata.initialization.Initializer
initialize
-
Constructor Details
-
FolderInitializer
public FolderInitializer()
-
-
Method Details
-
beforeStore
public void beforeStore(Folder folder, FolderHistory transaction, Map<String, Object> dictionary) throws PersistenceExceptionDescription copied from interface:FolderListener
Called before a folder is stored in the database- Specified by:
beforeStore
in interfaceFolderListener
- Parameters:
folder
- The folder to be storedtransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
PersistenceException
- raised if something went wrong
-
afterStore
public void afterStore(Folder document, FolderHistory transaction, Map<String, Object> dictionary) throws PersistenceExceptionDescription copied from interface:FolderListener
Called after a folder is stored in the database- Specified by:
afterStore
in interfaceFolderListener
- Parameters:
document
- The folder to be storedtransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
PersistenceException
- raised if something went wrong
-