Package org.flowable.app.api
Interface AppManagementService
public interface AppManagementService
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptiongetLockManager
(String lockName) Acquire a lock manager for the requested lock.Returns a map containing {tableName, rowCount} values.Returns all relational database tables of the engine.
-
Method Details
-
getTableCounts
Returns a map containing {tableName, rowCount} values. -
getTableNames
Collection<String> getTableNames()Returns all relational database tables of the engine. -
getLockManager
Acquire a lock manager for the requested lock. This is a stateless call, this means that every time a lock manager is requested a new one would be created. Make sure that you release the lock once you are done.- Parameters:
lockName
- the name of the lock that is being requested- Returns:
- the lock manager for the given lock
-