FieldValidationFailureProperties Class — spring-boot Architecture
Architecture documentation for the FieldValidationFailureProperties class in BindValidationFailureAnalyzerTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/BindValidationFailureAnalyzerTests.java lines 146–200
@ConfigurationProperties("test.foo")
@Validated
static class FieldValidationFailureProperties {
@NotNull
@SuppressWarnings("NullAway.Init")
private String foo;
@Min(value = 5, message = "at least five")
private int value;
@Valid
private FieldValidationFailureProperties.Nested nested = new FieldValidationFailureProperties.Nested();
String getFoo() {
return this.foo;
}
void setFoo(String foo) {
this.foo = foo;
}
int getValue() {
return this.value;
}
void setValue(int value) {
this.value = value;
}
FieldValidationFailureProperties.Nested getNested() {
return this.nested;
}
void setNested(FieldValidationFailureProperties.Nested nested) {
this.nested = nested;
}
static class Nested {
@NotNull
@SuppressWarnings("NullAway.Init")
private String bar;
String getBar() {
return this.bar;
}
void setBar(String bar) {
this.bar = bar;
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free