Package com.flowable.content.engine.impl
Class ContentEngineImpl
- java.lang.Object
-
- com.flowable.content.engine.impl.ContentEngineImpl
-
- All Implemented Interfaces:
ContentEngine
public class ContentEngineImpl extends java.lang.Object implements ContentEngine
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected org.flowable.job.service.impl.asyncexecutor.AsyncExecutorasyncExecutorprotected CoreContentServicecontentServiceprotected DocumentRepositoryServicedocumentRepositoryServiceprotected ContentEngineConfigurationengineConfigurationprotected org.flowable.content.api.ContentManagementServicemanagementServiceprotected MetadataServicemetadataServiceprotected java.lang.Stringnameprotected RenditionServicerenditionService-
Fields inherited from interface com.flowable.content.engine.ContentEngine
VERSION
-
-
Constructor Summary
Constructors Constructor Description ContentEngineImpl(ContentEngineConfiguration engineConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()ContentEngineConfigurationgetContentEngineConfiguration()org.flowable.content.api.ContentManagementServicegetContentManagementService()CoreContentServicegetContentService()DocumentRepositoryServicegetDocumentRepositoryService()MetadataServicegetMetadataService()java.lang.StringgetName()The name as specified in 'content-engine-name' in the flowable.content.cfg.xml configuration file.RenditionServicegetRenditionService()
-
-
-
Field Detail
-
name
protected java.lang.String name
-
managementService
protected org.flowable.content.api.ContentManagementService managementService
-
documentRepositoryService
protected DocumentRepositoryService documentRepositoryService
-
contentService
protected CoreContentService contentService
-
renditionService
protected RenditionService renditionService
-
metadataService
protected MetadataService metadataService
-
engineConfiguration
protected ContentEngineConfiguration engineConfiguration
-
asyncExecutor
protected org.flowable.job.service.impl.asyncexecutor.AsyncExecutor asyncExecutor
-
-
Constructor Detail
-
ContentEngineImpl
public ContentEngineImpl(ContentEngineConfiguration engineConfiguration)
-
-
Method Detail
-
close
public void close()
- Specified by:
closein interfaceContentEngine
-
getName
public java.lang.String getName()
Description copied from interface:ContentEngineThe name as specified in 'content-engine-name' in the flowable.content.cfg.xml configuration file. The default name for a process engine is 'default- Specified by:
getNamein interfaceContentEngine
-
getContentManagementService
public org.flowable.content.api.ContentManagementService getContentManagementService()
- Specified by:
getContentManagementServicein interfaceContentEngine
-
getDocumentRepositoryService
public DocumentRepositoryService getDocumentRepositoryService()
- Specified by:
getDocumentRepositoryServicein interfaceContentEngine
-
getContentService
public CoreContentService getContentService()
- Specified by:
getContentServicein interfaceContentEngine
-
getRenditionService
public RenditionService getRenditionService()
- Specified by:
getRenditionServicein interfaceContentEngine
-
getMetadataService
public MetadataService getMetadataService()
- Specified by:
getMetadataServicein interfaceContentEngine
-
getContentEngineConfiguration
public ContentEngineConfiguration getContentEngineConfiguration()
- Specified by:
getContentEngineConfigurationin interfaceContentEngine
-
-