TrustManagerFactoryWrapper Class — netty Architecture
Architecture documentation for the TrustManagerFactoryWrapper class in TrustManagerFactoryWrapper.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6ef9623a_11f2_c409_afde_c7c869e8c160["TrustManagerFactoryWrapper"] 2a28ed9c_cde6_5b0e_3371_bde3c6625d7b["TrustManagerFactoryWrapper.java"] 6ef9623a_11f2_c409_afde_c7c869e8c160 -->|defined in| 2a28ed9c_cde6_5b0e_3371_bde3c6625d7b 7411718f_c066_e467_bf3d_5b951a6efd9d["TrustManagerFactoryWrapper()"] 6ef9623a_11f2_c409_afde_c7c869e8c160 -->|method| 7411718f_c066_e467_bf3d_5b951a6efd9d ff353743_fe70_1e80_b961_1d459222d31a["engineInit()"] 6ef9623a_11f2_c409_afde_c7c869e8c160 -->|method| ff353743_fe70_1e80_b961_1d459222d31a f3f52ab1_5c41_b246_e747_527426aa66d0["engineGetTrustManagers()"] 6ef9623a_11f2_c409_afde_c7c869e8c160 -->|method| f3f52ab1_5c41_b246_e747_527426aa66d0
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/util/TrustManagerFactoryWrapper.java lines 25–43
public final class TrustManagerFactoryWrapper extends SimpleTrustManagerFactory {
private final TrustManager tm;
public TrustManagerFactoryWrapper(TrustManager tm) {
this.tm = ObjectUtil.checkNotNull(tm, "tm");
}
@Override
protected void engineInit(KeyStore keyStore) throws Exception { }
@Override
protected void engineInit(ManagerFactoryParameters managerFactoryParameters)
throws Exception { }
@Override
protected TrustManager[] engineGetTrustManagers() {
return new TrustManager[] {tm};
}
}
Source
Frequently Asked Questions
What is the TrustManagerFactoryWrapper class?
TrustManagerFactoryWrapper is a class in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/util/TrustManagerFactoryWrapper.java.
Where is TrustManagerFactoryWrapper defined?
TrustManagerFactoryWrapper is defined in handler/src/main/java/io/netty/handler/ssl/util/TrustManagerFactoryWrapper.java at line 25.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free