run.smt.ktest.db.query.QueryBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktest-db Show documentation
Show all versions of ktest-db Show documentation
Database intergration for kTest
package run.smt.ktest.db.query
interface QueryBuilder {
/**
* Map of parameters
*/
var parameters: MutableMap
/**
* Query string
*/
var query: String
/**
* Add/overwrite parameter, exclusive with `parametersFrom`
*/
fun parameter(name: String, value: Any?)
/**
* Extract parameters from given pojo, exclusive with `parameter`
*/
fun parametersFrom(pojo: Any)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy