appendAttribute() — netty Function Reference
Architecture documentation for the appendAttribute() function in ClientCookieDecoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d60cac5a_e112_2a4d_8085_70466b0f5c5d["appendAttribute()"] 5bdbdd2f_66bb_a2b0_d381_9110e8d7de38["CookieBuilder"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|defined in| 5bdbdd2f_66bb_a2b0_d381_9110e8d7de38 c93972ed_7edc_39c6_c802_7e2823875549["Cookie()"] c93972ed_7edc_39c6_c802_7e2823875549 -->|calls| d60cac5a_e112_2a4d_8085_70466b0f5c5d 05264edb_e391_eba3_d21a_8a0eb5a58278["parse4()"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|calls| 05264edb_e391_eba3_d21a_8a0eb5a58278 2066cc48_c168_cea4_1cfc_ca4a656a72e1["parse6()"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|calls| 2066cc48_c168_cea4_1cfc_ca4a656a72e1 6fc36097_3cca_2532_5c82_f456eade1d6a["parse7()"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|calls| 6fc36097_3cca_2532_5c82_f456eade1d6a 7ffca827_8c4a_b9bd_a2cd_c6ba8c71a58a["parse8()"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|calls| 7ffca827_8c4a_b9bd_a2cd_c6ba8c71a58a 9f201525_1fd3_adec_3295_7d9a7c65022a["parse11()"] d60cac5a_e112_2a4d_8085_70466b0f5c5d -->|calls| 9f201525_1fd3_adec_3295_7d9a7c65022a style d60cac5a_e112_2a4d_8085_70466b0f5c5d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/cookie/ClientCookieDecoder.java lines 204–218
void appendAttribute(int keyStart, int keyEnd, int valueStart, int valueEnd) {
int length = keyEnd - keyStart;
if (length == 4) {
parse4(keyStart, valueStart, valueEnd);
} else if (length == 6) {
parse6(keyStart, valueStart, valueEnd);
} else if (length == 7) {
parse7(keyStart, valueStart, valueEnd);
} else if (length == 8) {
parse8(keyStart, valueStart, valueEnd);
} else if (length == 11) {
parse11(keyStart);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does appendAttribute() do?
appendAttribute() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/cookie/ClientCookieDecoder.java.
Where is appendAttribute() defined?
appendAttribute() is defined in codec-http/src/main/java/io/netty/handler/codec/http/cookie/ClientCookieDecoder.java at line 204.
What does appendAttribute() call?
appendAttribute() calls 5 function(s): parse11, parse4, parse6, parse7, parse8.
What calls appendAttribute()?
appendAttribute() is called by 1 function(s): Cookie.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free