Package com.logicaldoc.scheme
Class DocumentScheme
java.lang.Object
com.logicaldoc.scheme.DocumentScheme
- All Implemented Interfaces:
 com.logicaldoc.core.document.DocumentListener
This listener handles schemes for the document being modified.
- Since:
 - 4.0
 - Author:
 - Matteo Caruso - LogicalDOC
 
- 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidafterCheckin(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) voidafterSaveHistory(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory event, Map<String, Object> dictionary) voidafterStore(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) voidbeforeCheckin(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) voidbeforeStore(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) static SchemeProcessorbuildSchemeProcessor(String type, com.logicaldoc.core.document.Document document, boolean checkin, boolean update, Map<String, Long> sequenceMap) Finds the scheme processor of the proper typestatic SchemeProcessorbuildSchemeProcessor(String type, com.logicaldoc.core.document.Document document, boolean checkin, boolean update, Map<String, Object> dictionary, Map<String, Long> sequenceMap) Finds the scheme processor of the proper type 
- 
Field Details
- 
DEFAULT
- See Also:
 
 - 
CUSTOMID_SCHEME
- See Also:
 
 - 
AUTONAMING_SCHEME
- See Also:
 
 - 
AUTOFOLDING_SCHEME
- See Also:
 
 
 - 
 - 
Constructor Details
- 
DocumentScheme
public DocumentScheme() 
 - 
 - 
Method Details
- 
afterStore
public void afterStore(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) - Specified by:
 afterStorein interfacecom.logicaldoc.core.document.DocumentListener
 - 
beforeStore
public void beforeStore(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) throws com.logicaldoc.core.PersistenceException- Specified by:
 beforeStorein interfacecom.logicaldoc.core.document.DocumentListener- Throws:
 com.logicaldoc.core.PersistenceException
 - 
afterCheckin
public void afterCheckin(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) throws com.logicaldoc.core.PersistenceException- Specified by:
 afterCheckinin interfacecom.logicaldoc.core.document.DocumentListener- Throws:
 com.logicaldoc.core.PersistenceException
 - 
beforeCheckin
public void beforeCheckin(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory transaction, Map<String, Object> dictionary) throws com.logicaldoc.core.PersistenceException- Specified by:
 beforeCheckinin interfacecom.logicaldoc.core.document.DocumentListener- Throws:
 com.logicaldoc.core.PersistenceException
 - 
buildSchemeProcessor
public static SchemeProcessor buildSchemeProcessor(String type, com.logicaldoc.core.document.Document document, boolean checkin, boolean update, Map<String, Long> sequenceMap) Finds the scheme processor of the proper type- Parameters:
 type- type of schemedocument- the document being processedcheckin- if we are processing a checkinupdate- if we are processing an update of the metadatasequenceMap- the map containing the values to use for the different sequences- Returns:
 - the matching processor
 
 - 
buildSchemeProcessor
public static SchemeProcessor buildSchemeProcessor(String type, com.logicaldoc.core.document.Document document, boolean checkin, boolean update, Map<String, Object> dictionary, Map<String, Long> sequenceMap) Finds the scheme processor of the proper type- Parameters:
 type- type of schemedocument- the document being processedcheckin- if we are processing a checkinupdate- if we are processing an update of the metadatadictionary- optional dictionary to use in the automationsequenceMap- the map containing the values to use for the different sequences- Returns:
 - the matching processor
 
 - 
afterSaveHistory
public void afterSaveHistory(com.logicaldoc.core.document.Document document, com.logicaldoc.core.document.DocumentHistory event, Map<String, Object> dictionary) throws com.logicaldoc.core.PersistenceException- Specified by:
 afterSaveHistoryin interfacecom.logicaldoc.core.document.DocumentListener- Throws:
 com.logicaldoc.core.PersistenceException
 
 -