ImmutablePropertiesSource Class — spring-boot Architecture
Architecture documentation for the ImmutablePropertiesSource class in ImmutablePropertiesSource.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/ImmutablePropertiesSource.java lines 22–42
@TestConfigurationPropertiesSource
public class ImmutablePropertiesSource {
/**
* Description of this simple property.
*/
@SuppressWarnings("unused")
private final String name;
/**
* Whether it is enabled.
*/
@SuppressWarnings("unused")
private final boolean enabled;
public ImmutablePropertiesSource(@TestDefaultValue("boot") String name, boolean enabled) {
this.name = name;
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