Package com.flowable.form.engine
Interface FormEngine
-
- All Known Implementing Classes:
FormEngineImpl
public interface FormEngine
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringVERSIONthe version of the flowable form library
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()FormEngineConfigurationgetFormEngineConfiguration()org.flowable.form.api.FormManagementServicegetFormManagementService()org.flowable.form.api.FormRepositoryServicegetFormRepositoryService()org.flowable.form.api.FormServicegetFormService()java.lang.StringgetName()The name as specified in 'form-engine-name' in the flowable.form.cfg.xml configuration file.
-
-
-
Field Detail
-
VERSION
static final java.lang.String VERSION
the version of the flowable form library- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
The name as specified in 'form-engine-name' in the flowable.form.cfg.xml configuration file. The default name for a form engine is 'default
-
close
void close()
-
getFormManagementService
org.flowable.form.api.FormManagementService getFormManagementService()
-
getFormRepositoryService
org.flowable.form.api.FormRepositoryService getFormRepositoryService()
-
getFormService
org.flowable.form.api.FormService getFormService()
-
getFormEngineConfiguration
FormEngineConfiguration getFormEngineConfiguration()
-
-