ConfigDataResolutionResult Class — spring-boot Architecture
Architecture documentation for the ConfigDataResolutionResult class in ConfigDataResolutionResult.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataResolutionResult.java lines 25–51
class ConfigDataResolutionResult {
private final ConfigDataLocation location;
private final ConfigDataResource resource;
private final boolean profileSpecific;
ConfigDataResolutionResult(ConfigDataLocation location, ConfigDataResource resource, boolean profileSpecific) {
this.location = location;
this.resource = resource;
this.profileSpecific = profileSpecific;
}
ConfigDataLocation getLocation() {
return this.location;
}
ConfigDataResource getResource() {
return this.resource;
}
boolean isProfileSpecific() {
return this.profileSpecific;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free