Package com.flowable.idm.engine
Interface CoreIdmEngine
- All Known Implementing Classes:
PlatformIdmEngineImpl
public interface CoreIdmEngine
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringVERSIONthe version of the flowable idm library -
Method Summary
Modifier and Type Method Description voidclose()ContactFilterServicegetContactFilterService()CoreIdmEngineConfigurationgetIdmEngineConfiguration()PlatformIdentityServicegetIdmIdentityService()org.flowable.idm.api.IdmManagementServicegetIdmManagementService()java.lang.StringgetName()The name as specified in 'idm-engine-name' in the flowable.idm.cfg.xml configuration file.UserAccountDefinitionServicegetUserAccountDefinitionService()UserAccountServicegetUserAccountService()UserDefinitionServicegetUserDefinitionService()UserIndexingServicegetUserIndexingService()UserIndexSearchServicegetUserIndexSearchService()UserPermissionServicegetUserPermissionService()
-
Field Details
-
VERSION
static final java.lang.String VERSIONthe version of the flowable idm library- See Also:
- Constant Field Values
-
-
Method Details
-
getName
java.lang.String getName()The name as specified in 'idm-engine-name' in the flowable.idm.cfg.xml configuration file. The default name for a idm engine is 'default -
close
void close() -
getIdmIdentityService
PlatformIdentityService getIdmIdentityService() -
getUserAccountService
UserAccountService getUserAccountService() -
getUserAccountDefinitionService
UserAccountDefinitionService getUserAccountDefinitionService() -
getUserDefinitionService
UserDefinitionService getUserDefinitionService() -
getIdmManagementService
org.flowable.idm.api.IdmManagementService getIdmManagementService() -
getContactFilterService
ContactFilterService getContactFilterService() -
getUserIndexingService
UserIndexingService getUserIndexingService() -
getUserPermissionService
UserPermissionService getUserPermissionService() -
getIdmEngineConfiguration
CoreIdmEngineConfiguration getIdmEngineConfiguration() -
getUserIndexSearchService
UserIndexSearchService getUserIndexSearchService()
-