handlebars.Java.beanValidation.mustache Maven / Gradle / Ivy
{{#required}}
@NotNull
{{/required}}
{{#is this 'container'}}
{{#isNot this 'primitive-type'}}
{{#isNot this 'enum'}}
@Valid
{{/isNot}}
{{/isNot}}
{{/is}}
{{#isNot this 'container'}}
{{#isNot this 'primitive-type'}}
@Valid
{{/isNot}}
{{/isNot}}
{{>beanValidationCore}}