Package com.logicaldoc.core.document
Class DocumentValidator
- java.lang.Object
-
- com.logicaldoc.core.metadata.validation.Validator
-
- com.logicaldoc.core.document.DocumentValidator
-
- All Implemented Interfaces:
DocumentListener
public class DocumentValidator extends Validator implements DocumentListener
This listener takes care of logically validate a document. If the document has a template and the template declares a validation script, it is executed- Since:
- 8.8.1
- Author:
- Marco Meschieri - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description DocumentValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)
Called after a document is checked invoid
afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary)
Called after an event has been storedvoid
afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)
Called after a document is stored in the databasevoid
beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)
Called before a document is checked invoid
beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)
Called before a document is stored in the database
-
-
-
Method Detail
-
beforeStore
public void beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws Exception
Description copied from interface:DocumentListener
Called before a document is stored in the database- Specified by:
beforeStore
in interfaceDocumentListener
- Parameters:
document
- The document to be storedtransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
Exception
- raised if something went wrong
-
beforeCheckin
public void beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws Exception
Description copied from interface:DocumentListener
Called before a document is checked in- Specified by:
beforeCheckin
in interfaceDocumentListener
- Parameters:
document
- The document to be checked intransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
Exception
- raised if something went wrong
-
afterStore
public void afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws Exception
Description copied from interface:DocumentListener
Called after a document is stored in the database- Specified by:
afterStore
in interfaceDocumentListener
- Parameters:
document
- The document to be storedtransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
Exception
- raised if something went wrong
-
afterCheckin
public void afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary) throws Exception
Description copied from interface:DocumentListener
Called after a document is checked in- Specified by:
afterCheckin
in interfaceDocumentListener
- Parameters:
document
- The document to be checked intransaction
- Transaction informationsdictionary
- Dictionary of the execution pipeline- Throws:
Exception
- raised if something went wrong
-
afterSaveHistory
public void afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary) throws Exception
Description copied from interface:DocumentListener
Called after an event has been stored- Specified by:
afterSaveHistory
in interfaceDocumentListener
- Parameters:
document
- The document the event is relative toevent
- The saved eventdictionary
- Dictionary of the execution pipeline- Throws:
Exception
- raised if something went wrong
-
-