Package com.logicaldoc.core.document
Class DocumentInitializer
- java.lang.Object
-
- com.logicaldoc.core.metadata.initialization.Initializer
-
- com.logicaldoc.core.document.DocumentInitializer
-
- All Implemented Interfaces:
DocumentListener
public class DocumentInitializer extends Initializer implements DocumentListener
This listener takes care of initializing the metadata of a document.- Since:
- 8.8.2
- Author:
- Marco Meschieri - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description DocumentInitializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called after a document is checked invoidafterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary)Called after an event has been storedvoidafterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called after a document is stored in the databasevoidbeforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called before a document is checked invoidbeforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called before a document is stored in the database-
Methods inherited from class com.logicaldoc.core.metadata.initialization.Initializer
initialize
-
-
-
-
Method Detail
-
beforeStore
public void beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws PersistenceException
Description copied from interface:DocumentListenerCalled before a document is stored in the database- Specified by:
beforeStorein interfaceDocumentListener- Parameters:
document- The document to be storedtransaction- Transaction informationsdictionary- Dictionary of the execution pipeline- Throws:
PersistenceException- raised if something went wrong
-
beforeCheckin
public void beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws PersistenceException
Description copied from interface:DocumentListenerCalled before a document is checked in- Specified by:
beforeCheckinin interfaceDocumentListener- Parameters:
document- The document to be checked intransaction- Transaction informationsdictionary- Dictionary of the execution pipeline- Throws:
PersistenceException- raised if something went wrong
-
afterStore
public void afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws PersistenceException
Description copied from interface:DocumentListenerCalled after a document is stored in the database- Specified by:
afterStorein interfaceDocumentListener- Parameters:
document- The document to be storedtransaction- Transaction informationsdictionary- Dictionary of the execution pipeline- Throws:
PersistenceException- raised if something went wrong
-
afterCheckin
public void afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws PersistenceException
Description copied from interface:DocumentListenerCalled after a document is checked in- Specified by:
afterCheckinin interfaceDocumentListener- Parameters:
document- The document to be checked intransaction- Transaction informationsdictionary- Dictionary of the execution pipeline- Throws:
PersistenceException- raised if something went wrong
-
afterSaveHistory
public void afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary) throws PersistenceException
Description copied from interface:DocumentListenerCalled after an event has been stored- Specified by:
afterSaveHistoryin interfaceDocumentListener- Parameters:
document- The document the event is relative toevent- The saved eventdictionary- Dictionary of the execution pipeline- Throws:
PersistenceException- raised if something went wrong
-
-