Usages of AssertTrue.List (multipe AssertTrue)What's the best name for a non-mutating “add” method on an immutable collection?The case against checked exceptionsHow do I discover memory usage of my application in Android?Constructor in an Interface?Why do bean validation Min/Max constraints not support the double type?bean validation and jsf 2 integrationPerform action when jsf validation errors occurCustom Bean Validator — JSR303/JSR349 can Validator choose message when invalid?Why is [] faster than list()?Marking indirect usages of classes, methods etc
Bent arrow under a node
How to sort human readable size
How do I become a better writer when I hate reading?
Is there a polite way to ask about one's ethnicity?
What kind of chart is this?
Regex version of strip() - Ch. 7 Automate the Boring Stuff
How can I prevent a user from copying files on another hard drive?
Basic power tool set for Home repair and simple projects
How would Japanese people react to someone refusing to say “itadakimasu” for religious reasons?
Are there examples of rowers who also fought?
What is the word?
How is linear momentum conserved in circular motion?
Is using Legacy mode is a bad thing to do?
I have found ports on my Samsung smart tv running a display service. What can I do with it?
Is a sequel allowed to start before the end of the first book?
How did the European Union reach the figure of 3% as a maximum allowed deficit?
how to find which software is doing ssh connection?
How could I create a situation in which a PC has to make a saving throw or be forced to pet a dog?
Would a 7805 5v regulator drain a 9v battery?
How to ask if I can mow my neighbor's lawn
How to make a villain when your PCs are villains?
Is it a bad idea to have a pen name with only an initial for a surname?
In the US, can a former president run again?
Does anyone recognize these rockets, and their location?
Usages of AssertTrue.List (multipe AssertTrue)
What's the best name for a non-mutating “add” method on an immutable collection?The case against checked exceptionsHow do I discover memory usage of my application in Android?Constructor in an Interface?Why do bean validation Min/Max constraints not support the double type?bean validation and jsf 2 integrationPerform action when jsf validation errors occurCustom Bean Validator — JSR303/JSR349 can Validator choose message when invalid?Why is [] faster than list()?Marking indirect usages of classes, methods etc
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I know the usages of AssertTrue, usually on methods (@AssertTrue
), with optional message as:
@AssertTrue(message="specificDate.isDateTimeValid.AssertTrue")
But what is the usages of AssertTrue.List?
Defines several AssertTrue annotations on the same element.
Because we can check True
with 1 annotation, why would we need such a list? I didn't find any usage of adding multiple AssertTrue
annotations on method/field
Is it just added to satisfy common practice/pattern/convention?
java list bean-validation assertion
add a comment |
I know the usages of AssertTrue, usually on methods (@AssertTrue
), with optional message as:
@AssertTrue(message="specificDate.isDateTimeValid.AssertTrue")
But what is the usages of AssertTrue.List?
Defines several AssertTrue annotations on the same element.
Because we can check True
with 1 annotation, why would we need such a list? I didn't find any usage of adding multiple AssertTrue
annotations on method/field
Is it just added to satisfy common practice/pattern/convention?
java list bean-validation assertion
If you use various@AssertTrue
with differentjavax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.
– ernest_k
Mar 25 at 5:52
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you callvalidate(myBean, Group1.class)
in one case and withGroup2.class
in another. But again, it's the sameisValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...
– ernest_k
Mar 25 at 6:47
add a comment |
I know the usages of AssertTrue, usually on methods (@AssertTrue
), with optional message as:
@AssertTrue(message="specificDate.isDateTimeValid.AssertTrue")
But what is the usages of AssertTrue.List?
Defines several AssertTrue annotations on the same element.
Because we can check True
with 1 annotation, why would we need such a list? I didn't find any usage of adding multiple AssertTrue
annotations on method/field
Is it just added to satisfy common practice/pattern/convention?
java list bean-validation assertion
I know the usages of AssertTrue, usually on methods (@AssertTrue
), with optional message as:
@AssertTrue(message="specificDate.isDateTimeValid.AssertTrue")
But what is the usages of AssertTrue.List?
Defines several AssertTrue annotations on the same element.
Because we can check True
with 1 annotation, why would we need such a list? I didn't find any usage of adding multiple AssertTrue
annotations on method/field
Is it just added to satisfy common practice/pattern/convention?
java list bean-validation assertion
java list bean-validation assertion
asked Mar 25 at 5:30
user7294900user7294900
26.7k123870
26.7k123870
If you use various@AssertTrue
with differentjavax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.
– ernest_k
Mar 25 at 5:52
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you callvalidate(myBean, Group1.class)
in one case and withGroup2.class
in another. But again, it's the sameisValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...
– ernest_k
Mar 25 at 6:47
add a comment |
If you use various@AssertTrue
with differentjavax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.
– ernest_k
Mar 25 at 5:52
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you callvalidate(myBean, Group1.class)
in one case and withGroup2.class
in another. But again, it's the sameisValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...
– ernest_k
Mar 25 at 6:47
If you use various
@AssertTrue
with different javax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.– ernest_k
Mar 25 at 5:52
If you use various
@AssertTrue
with different javax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.– ernest_k
Mar 25 at 5:52
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is
@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you call validate(myBean, Group1.class)
in one case and with Group2.class
in another. But again, it's the same isValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...– ernest_k
Mar 25 at 6:47
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is
@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you call validate(myBean, Group1.class)
in one case and with Group2.class
in another. But again, it's the same isValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...– ernest_k
Mar 25 at 6:47
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331715%2fusages-of-asserttrue-list-multipe-asserttrue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331715%2fusages-of-asserttrue-list-multipe-asserttrue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If you use various
@AssertTrue
with differentjavax.validation.constraints.AssertTrue.payload()
metadata, it makes sense to have multiple of them defined in one constraint.– ernest_k
Mar 25 at 5:52
@ernest_k can you answer with example?
– user7294900
Mar 25 at 5:54
Haha, I suppose I was making a use case in my mind. After thinking about it, I can only come up with some artificial use cases for this. One technically valid use case is
@AssertTrue(message="cde", groups=Group1.class)
@AssertTrue(message="abc", groups=Group2.class)
where you callvalidate(myBean, Group1.class)
in one case and withGroup2.class
in another. But again, it's the sameisValid()
method being called, which poses the question of why not have 2 methods with two distinct annotations in the first place (different logic in methods seems more sensible as a use case)...– ernest_k
Mar 25 at 6:47