Package com.flowable.idm.engine
Interface CoreIdmEngine
-
- All Known Implementing Classes:
PlatformIdmEngineImpl
public interface CoreIdmEngine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
ContactFilterService
getContactFilterService()
CoreIdmEngineConfiguration
getIdmEngineConfiguration()
PlatformIdentityService
getIdmIdentityService()
IdmManagementService
getIdmManagementService()
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 Detail
-
VERSION
static final String VERSION
the version of the flowable idm library- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
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
IdmManagementService getIdmManagementService()
-
getContactFilterService
ContactFilterService getContactFilterService()
-
getUserIndexingService
UserIndexingService getUserIndexingService()
-
getUserPermissionService
UserPermissionService getUserPermissionService()
-
getIdmEngineConfiguration
CoreIdmEngineConfiguration getIdmEngineConfiguration()
-
getUserIndexSearchService
UserIndexSearchService getUserIndexSearchService()
-
-