Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Java and play. going through the sample applications. can you help me understand what it is going on in this file. https://github.com/playframework/Play20/blob/master/samples/java/forms/app/models/User.java

I don't understand why we declare this interface "public interface All {}" and how it is being used in this validation. "@Required(groups = {All.class, Step1.class})"

share|improve this question

1 Answer

up vote 7 down vote accepted

@Required is a custom JSR-303 annotation, created within the Play framework. JSR-303 is a specification for validation of Javabeans, which allows for ensuring that a given Java bean's values fall within a set of constraints. Examples of some standard validation annotations:

  • @Max - The annotated element must be a number whose value must be lower or equal to the specified maximum.
  • @Min - The annotated element must be a number whose value must be higher or equal to the specified minimum.
  • @NotNull - The annotated element must not be null.

Each JSR-303 annotation is allowed to define groups, where each group is really just a class. These groups can be used to execute a subset of validations for a given bean. In your particular example, the implementors have defined two interfaces to represent these groups - All and Step1. Then they add the groups to the validation annotations, in order to indicate that those validations belong to the group. So for the below class:

public class MyBean {
    @Required(groups = {All.class, Step1.class})
    @MinLength(value = 4, groups = {All.class})
    public String username;
}

MyBean bean = new MyBean();
ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
Validator validator = factory.getValidator();

The following will execute the @Required and @MinLength validation for the username field:

validator.validate(bean, All.class);

Whereas the following will execute just the @Required validation (for the username field):

validator.validate(bean, Step1.class);
share|improve this answer
Thanks, that was very helpful. – vinos Mar 6 at 2:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.