Home / Function/ regularInstanceDefaultsToDefaultCiphers() — netty Function Reference

regularInstanceDefaultsToDefaultCiphers() — netty Function Reference

Architecture documentation for the regularInstanceDefaultsToDefaultCiphers() function in IdentityCipherSuiteFilterTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ee6c5048_990f_e9d8_3eac_97b951e630db["regularInstanceDefaultsToDefaultCiphers()"]
  60c1f160_892a_984f_45fc_6d3d806c9773["IdentityCipherSuiteFilterTest"]
  ee6c5048_990f_e9d8_3eac_97b951e630db -->|defined in| 60c1f160_892a_984f_45fc_6d3d806c9773
  style ee6c5048_990f_e9d8_3eac_97b951e630db fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/IdentityCipherSuiteFilterTest.java lines 29–36

    @Test
    public void regularInstanceDefaultsToDefaultCiphers() {
        List<String> defaultCiphers = Arrays.asList("FOO", "BAR");
        Set<String> supportedCiphers = new HashSet<String>(Arrays.asList("BAZ", "QIX"));
        String[] filtered = IdentityCipherSuiteFilter.INSTANCE
                .filterCipherSuites(null, defaultCiphers, supportedCiphers);
        assertArrayEquals(defaultCiphers.toArray(), filtered);
    }

Domain

Subdomains

Frequently Asked Questions

What does regularInstanceDefaultsToDefaultCiphers() do?
regularInstanceDefaultsToDefaultCiphers() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/IdentityCipherSuiteFilterTest.java.
Where is regularInstanceDefaultsToDefaultCiphers() defined?
regularInstanceDefaultsToDefaultCiphers() is defined in handler/src/test/java/io/netty/handler/ssl/IdentityCipherSuiteFilterTest.java at line 29.

Analyze Your Own Codebase

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

Try Supermodel Free