Package org.camunda.bpm.engine.impl.util
Class DatabaseUtil
- java.lang.Object
-
- org.camunda.bpm.engine.impl.util.DatabaseUtil
-
public class DatabaseUtil extends Object
-
-
Constructor Summary
Constructors Constructor Description DatabaseUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
checkDatabaseType(String... databaseTypes)
Checks if the currently used database is of a given database type.static boolean
checkDatabaseType(ProcessEngineConfigurationImpl configuration, String... databaseTypes)
Checks if the currently used database is of a given database type.
-
-
-
Method Detail
-
checkDatabaseType
public static boolean checkDatabaseType(String... databaseTypes)
Checks if the currently used database is of a given database type.- Parameters:
databaseTypes
- to check for- Returns:
- true if any of the provided types match the used one. Otherwise false.
-
checkDatabaseType
public static boolean checkDatabaseType(ProcessEngineConfigurationImpl configuration, String... databaseTypes)
Checks if the currently used database is of a given database type.- Parameters:
configuration
- for the Process Engine, when a Context is not availabledatabaseTypes
- to check for- Returns:
- true if any of the provided types match the used one. Otherwise false.
-
-