PersonAndAlienProperties Class — spring-boot Architecture
Architecture documentation for the PersonAndAlienProperties 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 2216–2240
@EnableConfigurationProperties
@ConfigurationProperties("test")
static class PersonAndAlienProperties {
private @Nullable Person person;
private @Nullable Alien alien;
@Nullable Person getPerson() {
return this.person;
}
void setPerson(@Nullable Person person) {
this.person = person;
}
@Nullable Alien getAlien() {
return this.alien;
}
void setAlien(@Nullable Alien alien) {
this.alien = alien;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free