BaseProperties Class — spring-boot Architecture
Architecture documentation for the BaseProperties class in BaseProperties.java from the spring-boot codebase.
Entity Profile
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/inheritance/BaseProperties.java lines 19–71
public class BaseProperties {
private boolean boolValue;
private int intValue;
private final Nest nest = new Nest();
public boolean isBoolValue() {
return this.boolValue;
}
public void setBoolValue(boolean boolValue) {
this.boolValue = boolValue;
}
public int getIntValue() {
return this.intValue;
}
public void setIntValue(int intValue) {
this.intValue = intValue;
}
public Nest getNest() {
return this.nest;
}
public static class Nest {
private boolean boolValue;
private int intValue;
public boolean isBoolValue() {
return this.boolValue;
}
public void setBoolValue(boolean boolValue) {
this.boolValue = boolValue;
}
public int getIntValue() {
return this.intValue;
}
public void setIntValue(int intValue) {
this.intValue = intValue;
}
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free