branch develop updated (f084b0d -> 8f03983)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git from f084b0d BeanUtil.getWriteableProperties methods returns readable properties (Fixes #4041) new 8f03983 fixes #4050 Add a static instance of PaginationParameter that represents 'all elements' The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 8f0398395769a53865bddc5c401c3ebc39c6e5e3 Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 30 22:38:15 2016 +0200 fixes #4050 Add a static instance of PaginationParameter that represents 'all elements' Summary of changes: src/main/java/org/nuiton/util/pagination/PaginationParameter.java | 5 +++++ 1 file changed, 5 insertions(+) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 8f0398395769a53865bddc5c401c3ebc39c6e5e3 Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 30 22:38:15 2016 +0200 fixes #4050 Add a static instance of PaginationParameter that represents 'all elements' --- src/main/java/org/nuiton/util/pagination/PaginationParameter.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/nuiton/util/pagination/PaginationParameter.java b/src/main/java/org/nuiton/util/pagination/PaginationParameter.java index 7bb0c12..827e049 100644 --- a/src/main/java/org/nuiton/util/pagination/PaginationParameter.java +++ b/src/main/java/org/nuiton/util/pagination/PaginationParameter.java @@ -42,6 +42,11 @@ public class PaginationParameter implements Serializable { private static final long serialVersionUID = 1L; /** + * An instance that represents a page of ALL elements + */ + public static final PaginationParameter ALL = PaginationParameter.of(0, -1); + + /** * 0-based page number */ protected int pageNumber; -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm