TestConfigDataResource Class — spring-boot Architecture
Architecture documentation for the TestConfigDataResource class in ConfigDataLocationResolversTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataLocationResolversTests.java lines 280–308
static class TestConfigDataResource extends ConfigDataResource {
private final TestResolver resolver;
private final ConfigDataLocation location;
private final boolean profileSpecific;
TestConfigDataResource(boolean optional, TestResolver resolver, ConfigDataLocation location,
boolean profileSpecific) {
super(optional);
this.resolver = resolver;
this.location = location;
this.profileSpecific = profileSpecific;
}
TestResolver getResolver() {
return this.resolver;
}
ConfigDataLocation getLocation() {
return this.location;
}
boolean isProfileSpecific() {
return this.profileSpecific;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free