InnerClassHierarchicalProperties Class — spring-boot Architecture
Architecture documentation for the InnerClassHierarchicalProperties class in InnerClassHierarchicalProperties.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/specific/InnerClassHierarchicalProperties.java lines 27–92
@TestConfigurationProperties("config")
public class InnerClassHierarchicalProperties {
private Foo foo;
public Foo getFoo() {
return this.foo;
}
public void setFoo(Foo foo) {
this.foo = foo;
}
public static class Foo {
private Bar bar;
public Bar getBar() {
return this.bar;
}
public void setBar(Bar bar) {
this.bar = bar;
}
public static class Baz {
private String blah;
public String getBlah() {
return this.blah;
}
public void setBlah(String blah) {
this.blah = blah;
}
}
}
public static class Bar {
private String bling;
private Foo.Baz baz;
public String getBling() {
return this.bling;
}
public void setBling(String foo) {
this.bling = foo;
}
public Foo.Baz getBaz() {
return this.baz;
}
public void setBaz(Foo.Baz baz) {
this.baz = baz;
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free