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