StompTestConstants Class — netty Architecture
Architecture documentation for the StompTestConstants class in StompTestConstants.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6c553f31_0455_7bea_837e_2a3b4b60c031["StompTestConstants"] 6c91f512_ea7d_f5bf_9a02_6c753b531674["StompTestConstants.java"] 6c553f31_0455_7bea_837e_2a3b4b60c031 -->|defined in| 6c91f512_ea7d_f5bf_9a02_6c753b531674 0cb1d2d3_a292_221c_b4eb_433ba6ec07f4["StompTestConstants()"] 6c553f31_0455_7bea_837e_2a3b4b60c031 -->|method| 0cb1d2d3_a292_221c_b4eb_433ba6ec07f4
Relationship Graph
Source Code
codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompTestConstants.java lines 18–105
public final class StompTestConstants {
public static final String CONNECT_FRAME =
"CONNECT\n" +
"host:stomp.github.org\n" +
"accept-version:1.1,1.2\n" +
'\n' +
'\0';
public static final String CONNECTED_FRAME =
"CONNECTED\n" +
"version:1.2\n" +
'\n' +
"\0\n";
public static final String SEND_FRAME_1 =
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"hello, queue a!" +
"\0\n";
public static final String SEND_FRAME_2 =
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
"content-length:17\n" +
'\n' +
"hello, queue a!!!" +
"\0\n";
public static final String[] SEND_FRAMES_3 = {
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"first part of body\n",
"second part of body\0"
};
public static final String SEND_FRAME_4 = "SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"body\0";
public static final String FRAME_WITH_INVALID_HEADER = "SEND\n" +
"destination:/some-destination\n" +
"content-type:text/plain\n" +
"current-time:2000-01-01T00:00:00\n" +
'\n' +
"some body\0";
public static final String FRAME_WITH_EMPTY_HEADER_NAME = "SEND\n" +
"destination:/some-destination\n" +
"content-type:text/plain\n" +
":header-value\n" +
'\n' +
"some body\0";
public static final String SEND_FRAME_UTF8 = "SEND\n" +
"destination:/queue/№11±♛нетти♕\n" +
"content-type:text/plain\n" +
'\n' +
"body\0";
public static final String FRAME_WITHOUT_NULL_ENDING = "SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
"content-length:4\n" +
'\n' +
"body\1";
public static final String ESCAPED_MESSAGE_FRAME = "MESSAGE\n" +
"message-id:100\n" +
"subscription:1\n" +
"destination:/queue/a\\c\n" +
"header\\\\\\r\\n\\cName:header\\\\\\r\\n\\cValue\n" +
"header_\\\\_\\r_\\n_\\c_Name:header_\\\\_\\r_\\n_\\c_Value\n" +
"headerName\\c:\\cheaderValue\n" +
'\n' + '\0';
public static final String INVALID_ESCAPED_MESSAGE_FRAME = "MESSAGE\n" +
"message-id:100\n" +
"subscription:0\n" +
Source
Frequently Asked Questions
What is the StompTestConstants class?
StompTestConstants is a class in the netty codebase, defined in codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompTestConstants.java.
Where is StompTestConstants defined?
StompTestConstants is defined in codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompTestConstants.java at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free