TestConnectionDetailsFactory Class — spring-boot Architecture
Architecture documentation for the TestConnectionDetailsFactory class in ConnectionDetailsFactoriesTests.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/service/connection/ConnectionDetailsFactoriesTests.java lines 120–143
private static final class TestConnectionDetailsFactory
implements ConnectionDetailsFactory<String, TestConnectionDetails>, Ordered {
private final int order;
private TestConnectionDetailsFactory() {
this(0);
}
private TestConnectionDetailsFactory(int order) {
this.order = order;
}
@Override
public TestConnectionDetails getConnectionDetails(String source) {
return new TestConnectionDetailsImpl();
}
@Override
public int getOrder() {
return this.order;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free