Class DataSqlParameterSource
java.lang.Object
com.flowable.serviceregistry.engine.impl.invoker.db.DataSqlParameterSource
- All Implemented Interfaces:
org.springframework.jdbc.core.namedparam.SqlParameterSource
public class DataSqlParameterSource
extends java.lang.Object
implements org.springframework.jdbc.core.namedparam.SqlParameterSource
- Author:
- Filip Hrisafov
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,ColumnMapping>
columnMappings
protected ServiceInvocationVariablesContainer
variablesContainer
-
Constructor Summary
Constructors Constructor Description DataSqlParameterSource(ServiceInvocationVariablesContainer variablesContainer)
-
Method Summary
Modifier and Type Method Description java.lang.String[]
getParameterNames()
int
getSqlType(java.lang.String paramName)
java.lang.Object
getValue(java.lang.String paramName)
boolean
hasValue(java.lang.String paramName)
void
registerMapping(ColumnMapping columnMapping)
-
Field Details
-
Constructor Details
-
Method Details
-
hasValue
public boolean hasValue(java.lang.String paramName)- Specified by:
hasValue
in interfaceorg.springframework.jdbc.core.namedparam.SqlParameterSource
-
getValue
public java.lang.Object getValue(java.lang.String paramName)- Specified by:
getValue
in interfaceorg.springframework.jdbc.core.namedparam.SqlParameterSource
-
getParameterNames
public java.lang.String[] getParameterNames()- Specified by:
getParameterNames
in interfaceorg.springframework.jdbc.core.namedparam.SqlParameterSource
-
getSqlType
public int getSqlType(java.lang.String paramName)- Specified by:
getSqlType
in interfaceorg.springframework.jdbc.core.namedparam.SqlParameterSource
-
registerMapping
-