Home / Function/ testJdkServerEnableOcsp() — netty Function Reference

testJdkServerEnableOcsp() — netty Function Reference

Architecture documentation for the testJdkServerEnableOcsp() function in OcspTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  24e016e1_60e0_ef9d_f0da_a24a8e9afd1f["testJdkServerEnableOcsp()"]
  9135fc19_1676_c0ae_d77a_3a05e26293b5["OcspTest"]
  24e016e1_60e0_ef9d_f0da_a24a8e9afd1f -->|defined in| 9135fc19_1676_c0ae_d77a_3a05e26293b5
  style 24e016e1_60e0_ef9d_f0da_a24a8e9afd1f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler-ssl-ocsp/src/test/java/io/netty/handler/ssl/ocsp/OcspTest.java lines 94–105

    @Test
    public void testJdkServerEnableOcsp() throws Exception {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                SslContextBuilder.forServer(ssc.toKeyManagerFactory())
                        .sslProvider(SslProvider.JDK)
                        .enableOcsp(true)
                        .build();
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testJdkServerEnableOcsp() do?
testJdkServerEnableOcsp() is a function in the netty codebase, defined in handler-ssl-ocsp/src/test/java/io/netty/handler/ssl/ocsp/OcspTest.java.
Where is testJdkServerEnableOcsp() defined?
testJdkServerEnableOcsp() is defined in handler-ssl-ocsp/src/test/java/io/netty/handler/ssl/ocsp/OcspTest.java at line 94.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free