AbstractPropertiesSource Class — spring-boot Architecture
Architecture documentation for the AbstractPropertiesSource class in AbstractPropertiesSource.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/source/generation/AbstractPropertiesSource.java lines 21–50
@TestConfigurationPropertiesSource
public abstract class AbstractPropertiesSource {
/**
* Description of this simple property.
*/
private String name = "boot";
/**
* Whether it is enabled.
*/
private boolean enabled;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public boolean isEnabled() {
return this.enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free