Home / Class/ SSLSessionBindingEventValue Class — netty Architecture

SSLSessionBindingEventValue Class — netty Architecture

Architecture documentation for the SSLSessionBindingEventValue class in SSLEngineTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  caf632c6_8894_47b4_e237_625552d07dbd["SSLSessionBindingEventValue"]
  859a13fc_5d1f_4d06_dca1_2d4d0f57be71["SSLEngineTest.java"]
  caf632c6_8894_47b4_e237_625552d07dbd -->|defined in| 859a13fc_5d1f_4d06_dca1_2d4d0f57be71
  1d636ae2_d917_fb89_3e82_3595a6b7332e["valueBound()"]
  caf632c6_8894_47b4_e237_625552d07dbd -->|method| 1d636ae2_d917_fb89_3e82_3595a6b7332e
  65f71b69_9242_2a75_3781_a0148d308b62["valueUnbound()"]
  caf632c6_8894_47b4_e237_625552d07dbd -->|method| 65f71b69_9242_2a75_3781_a0148d308b62

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 3558–3573

            class SSLSessionBindingEventValue implements SSLSessionBindingListener {
                SSLSessionBindingEvent boundEvent;
                SSLSessionBindingEvent unboundEvent;

                @Override
                public void valueBound(SSLSessionBindingEvent sslSessionBindingEvent) {
                    assertNull(boundEvent);
                    boundEvent = sslSessionBindingEvent;
                }

                @Override
                public void valueUnbound(SSLSessionBindingEvent sslSessionBindingEvent) {
                    assertNull(unboundEvent);
                    unboundEvent = sslSessionBindingEvent;
                }
            }

Frequently Asked Questions

What is the SSLSessionBindingEventValue class?
SSLSessionBindingEventValue is a class in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is SSLSessionBindingEventValue defined?
SSLSessionBindingEventValue is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 3558.

Analyze Your Own Codebase

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

Try Supermodel Free