FixedTrustManagersSpi Class — spring-boot Architecture
Architecture documentation for the FixedTrustManagersSpi class in FixedTrustManagerFactory.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/ssl/FixedTrustManagerFactory.java lines 46–67
private static final class FixedTrustManagersSpi extends TrustManagerFactorySpi {
private final TrustManager[] trustManagers;
private FixedTrustManagersSpi(TrustManager[] trustManagers) {
this.trustManagers = trustManagers;
}
@Override
protected void engineInit(KeyStore ks) {
}
@Override
protected void engineInit(ManagerFactoryParameters spec) {
}
@Override
protected TrustManager[] engineGetTrustManagers() {
return this.trustManagers;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free