Skip to content

Commit

Permalink
add query parameters to DAO API
Browse files Browse the repository at this point in the history
  • Loading branch information
borcsokj committed May 10, 2021
1 parent 480a0e6 commit 1964301
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/hu/blackbelt/judo/dao/api/DAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

public interface DAO<ID> {

String PARAMETERS_KEY = "__parameters";

/**
* Load static features (attributes and embedded relations) of an unmapped transfer object type.
*
Expand Down Expand Up @@ -448,5 +450,7 @@ class QueryCustomizer {
private boolean withoutFeatures;

private Map<String, Object> mask;

private Map<String, Object> parameters;
}
}

0 comments on commit 1964301

Please sign in to comment.