Home / Function/ anyOrigin() — netty Function Reference

anyOrigin() — netty Function Reference

Architecture documentation for the anyOrigin() function in CorsConfigTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  778e18f4_ec5a_c03c_b8c1_a95f0a372dd8["anyOrigin()"]
  4c12e86c_466b_5dbf_1ee2_0e8263642d7d["CorsConfigTest"]
  778e18f4_ec5a_c03c_b8c1_a95f0a372dd8 -->|defined in| 4c12e86c_466b_5dbf_1ee2_0e8263642d7d
  677cff4f_8123_a537_cf63_7cc039849ffd["origin()"]
  778e18f4_ec5a_c03c_b8c1_a95f0a372dd8 -->|calls| 677cff4f_8123_a537_cf63_7cc039849ffd
  d060553c_0ce9_659f_6049_0d6219649b5a["origins()"]
  778e18f4_ec5a_c03c_b8c1_a95f0a372dd8 -->|calls| d060553c_0ce9_659f_6049_0d6219649b5a
  style 778e18f4_ec5a_c03c_b8c1_a95f0a372dd8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsConfigTest.java lines 43–49

    @Test
    public void anyOrigin() {
        final CorsConfig cors = forAnyOrigin().build();
        assertTrue(cors.isAnyOriginSupported());
        assertEquals("*", cors.origin());
        assertTrue(cors.origins().isEmpty());
    }

Domain

Subdomains

Frequently Asked Questions

What does anyOrigin() do?
anyOrigin() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsConfigTest.java.
Where is anyOrigin() defined?
anyOrigin() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsConfigTest.java at line 43.
What does anyOrigin() call?
anyOrigin() calls 2 function(s): origin, origins.

Analyze Your Own Codebase

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

Try Supermodel Free