simpleRequestAllowCredentials() — netty Function Reference
Architecture documentation for the simpleRequestAllowCredentials() function in CorsHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 134a8409_21eb_1044_bf18_5c8f12499596["simpleRequestAllowCredentials()"] e946b2e4_b243_053e_5c0a_3d1a9a50042d["CorsHandlerTest"] 134a8409_21eb_1044_bf18_5c8f12499596 -->|defined in| e946b2e4_b243_053e_5c0a_3d1a9a50042d style 134a8409_21eb_1044_bf18_5c8f12499596 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java lines 266–272
@Test
public void simpleRequestAllowCredentials() {
final CorsConfig config = forAnyOrigin().allowCredentials().build();
final HttpResponse response = simpleRequest(config, "http://localhost:7777");
assertEquals("true", response.headers().get(ACCESS_CONTROL_ALLOW_CREDENTIALS));
assertTrue(ReferenceCountUtil.release(response));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does simpleRequestAllowCredentials() do?
simpleRequestAllowCredentials() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java.
Where is simpleRequestAllowCredentials() defined?
simpleRequestAllowCredentials() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java at line 266.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free