org.activiti.engine.impl.cmd.CustomSqlExecution Java Examples
The following examples show how to use
org.activiti.engine.impl.cmd.CustomSqlExecution.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ManagementServiceImpl.java From activiti6-boot2 with Apache License 2.0 | 4 votes |
@Override public <MapperType, ResultType> ResultType executeCustomSql(CustomSqlExecution<MapperType, ResultType> customSqlExecution) { Class<MapperType> mapperClass = customSqlExecution.getMapperClass(); return commandExecutor.execute(new ExecuteCustomSqlCmd<MapperType, ResultType>(mapperClass, customSqlExecution)); }
Example #2
Source File: ManagementServiceImpl.java From flowable-engine with Apache License 2.0 | 4 votes |
@Override public <MapperType, ResultType> ResultType executeCustomSql(CustomSqlExecution<MapperType, ResultType> customSqlExecution) { Class<MapperType> mapperClass = customSqlExecution.getMapperClass(); return commandExecutor.execute(new ExecuteCustomSqlCmd<>(mapperClass, customSqlExecution)); }
Example #3
Source File: ManagementService.java From activiti6-boot2 with Apache License 2.0 | 2 votes |
/** * Executes the sql contained in the {@link CustomSqlExecution} parameter. */ <MapperType, ResultType> ResultType executeCustomSql(CustomSqlExecution<MapperType, ResultType> customSqlExecution);
Example #4
Source File: ManagementService.java From flowable-engine with Apache License 2.0 | 2 votes |
/** * [EXPERIMENTAL] * * Executes the sql contained in the {@link CustomSqlExecution} parameter. */ <MapperType, ResultType> ResultType executeCustomSql(CustomSqlExecution<MapperType, ResultType> customSqlExecution);