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.String
VERSION
the version of the flowable idm library -
Method Summary
Modifier and Type Method Description void
close()
ContactFilterService
getContactFilterService()
CoreIdmEngineConfiguration
getIdmEngineConfiguration()
PlatformIdentityService
getIdmIdentityService()
org.flowable.idm.api.IdmManagementService
getIdmManagementService()
java.lang.String
getName()
The name as specified in 'idm-engine-name' in the flowable.idm.cfg.xml configuration file.UserAccountDefinitionService
getUserAccountDefinitionService()
UserAccountService
getUserAccountService()
UserDefinitionService
getUserDefinitionService()
UserIndexingService
getUserIndexingService()
UserIndexSearchService
getUserIndexSearchService()
UserPermissionService
getUserPermissionService()
-
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()
-