Added AbstractQuery#defaults

This commit is contained in:
mathias 2021-08-26 17:05:19 +02:00
parent a3e97cda44
commit d41de8cfcc
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -6,6 +6,11 @@ public abstract class AbstractQuery {
private final HashMap<QueryParameter, Object> PARAMETERS = new HashMap<>();
/**
* Here the query adds its default values
*/
public abstract void defaults();
/**
* The building logic of the sql query
*