ConstructorBindingWithOuterClassConstructorBoundProperties Class — spring-boot Architecture
Architecture documentation for the ConstructorBindingWithOuterClassConstructorBoundProperties class in ConfigurationPropertiesTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 2830–2857
@ConfigurationProperties("test")
static class ConstructorBindingWithOuterClassConstructorBoundProperties {
private final Nested nested;
ConstructorBindingWithOuterClassConstructorBoundProperties(Nested nested) {
this.nested = nested;
}
Nested getNested() {
return this.nested;
}
static class Nested {
private @Nullable Outer outer;
@Nullable Outer getOuter() {
return this.outer;
}
void setOuter(@Nullable Outer nested) {
this.outer = nested;
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free