JavaBeanNameAnnotationProperties Class — spring-boot Architecture
Architecture documentation for the JavaBeanNameAnnotationProperties class in JavaBeanNameAnnotationProperties.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/name/JavaBeanNameAnnotationProperties.java lines 28–59
@TestConfigurationProperties("named")
public class JavaBeanNameAnnotationProperties {
/**
* Imports to apply.
*/
@TestName("import")
private String imports;
/**
* Whether default mode is enabled.
*/
@TestName("default")
private boolean defaultValue = true;
public String getImports() {
return this.imports;
}
public void setImports(String imports) {
this.imports = imports;
}
public boolean isDefaultValue() {
return this.defaultValue;
}
public void setDefaultValue(boolean defaultValue) {
this.defaultValue = defaultValue;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free