BaseSource Class — spring-boot Architecture
Architecture documentation for the BaseSource class in BaseSource.java from the spring-boot codebase.
Entity Profile
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/source/BaseSource.java lines 22–46
public abstract class BaseSource {
private boolean enabled;
private String username;
public boolean isEnabled() {
return this.enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
protected abstract String getPassword();
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free