Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JNG-6022 Mark selected range items in http header #69

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/main/java/hu/blackbelt/judo/dao/api/DAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ public interface DAO<ID> {
* @param payload owner data of relation
* @param queryCustomizer query customizer (i.e. filtering, ordering, seeking)
* @param stateful allow create a new instance or update the existing instance of the 'payload'
* @param markSelectedRangeItems marking records on the list which are already attacched to reference
* @return list of possible item(s)
*/
Collection<Payload> getRangeOf(EReference reference, Payload payload, QueryCustomizer<ID> queryCustomizer, boolean stateful);
Collection<Payload> getRangeOf(EReference reference, Payload payload, QueryCustomizer<ID> queryCustomizer, boolean stateful, boolean markSelectedRangeItems);

/**
* Get range's count of a given transfer object relation.
Expand Down
Loading