Commit a6ce5a2f573579ef634e928a3ed14ec18aaa3940
1 parent
d55001c6
Exists in
master
Modificado de public para protected o controlador de acesso do método
findByCriteriaQuery da classe JPACrud.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
impl/extension/jpa/src/main/java/br/gov/frameworkdemoiselle/template/JPACrud.java
... | ... | @@ -203,7 +203,7 @@ public class JPACrud<T, I> implements Crud<T, I> { |
203 | 203 | * - structure CriteriaQuery |
204 | 204 | * @return a list of entities |
205 | 205 | */ |
206 | - public List<T> findByCriteriaQuery(CriteriaQuery<T> criteriaQuery) { | |
206 | + protected List<T> findByCriteriaQuery(CriteriaQuery<T> criteriaQuery) { | |
207 | 207 | TypedQuery<T> listQuery = getEntityManager().createQuery(criteriaQuery); |
208 | 208 | |
209 | 209 | if (getPagination() != null) { | ... | ... |