Package com.flowable.content.engine
Interface ContentEngine
-
- All Known Implementing Classes:
ContentEngineImpl
public interface ContentEngine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
ContentEngineConfiguration
getContentEngineConfiguration()
ContentManagementService
getContentManagementService()
CoreContentService
getContentService()
DocumentRepositoryService
getDocumentRepositoryService()
MetadataService
getMetadataService()
String
getName()
The name as specified in 'content-engine-name' in the flowable.content.cfg.xml configuration file.RenditionService
getRenditionService()
void
startExecutors()
-
-
-
Field Detail
-
VERSION
static final String VERSION
the version of the flowable content library- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
The name as specified in 'content-engine-name' in the flowable.content.cfg.xml configuration file. The default name for a process engine is 'default
-
close
void close()
-
startExecutors
void startExecutors()
-
getContentManagementService
ContentManagementService getContentManagementService()
-
getDocumentRepositoryService
DocumentRepositoryService getDocumentRepositoryService()
-
getContentService
CoreContentService getContentService()
-
getRenditionService
RenditionService getRenditionService()
-
getMetadataService
MetadataService getMetadataService()
-
getContentEngineConfiguration
ContentEngineConfiguration getContentEngineConfiguration()
-
-