1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
 * Copyright (C) 2015 Neo Visionaries Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package NeoVisionaries.WebSockets;


/**
 * Close code.
 * 
 * <EMBED CLASS='external-html' DATA-FILE-ID=LICENSE>
 *
 * @see <a href="http://tools.ietf.org/html/rfc6455#section-7.4.1"
 *      >RFC 6455, 7.4.1. Defined Status Codes</a>
 */
public class WebSocketCloseCode
{
    /**
     * 1000;
     * <i>
     * 1000 indicates a normal closure, meaning that the purpose for
     * which the connection was established has been fulfilled
     * </i>
     */
    public static final int NORMAL = 1000;


    /**
     * 1001;
     * <i>
     * 1001 indicates that an endpoint is "going away", such as a server
     * going down or a browser having navigated away from a page
     * </i>
     */
    public static final int AWAY = 1001;


    /**
     * 1002;
     * <i>
     * 1002 indicates that an endpoint is terminating the connection due
     * to a protocol error
     * </i>
     */
    public static final int UNCONFORMED = 1002;


    /**
     * 1003;
     * <i>
     * 1003 indicates that an endpoint is terminating the connection
     * because it has received a type of data it cannot accept
     * (e&#46;g&#46;, an endpoint that understands only text data MAY
     * send this if it receives a binary message)
     * </i>
     */
    public static final int UNACCEPTABLE = 1003;


    /**
     * 1005;
     * <i>
     * 1005 is a reserved value and MUST NOT be set as a status code in a
     * Close control frame by an endpoint&#46;  It is designated for use in
     * applications expecting a status code to indicate that no status
     * code was actually present
     * </i>
     */
    public static final int NONE = 1005;


    /**
     * 1006;
     * <i>
     * 1006 is a reserved value and MUST NOT be set as a status code in a
     * Close control frame by an endpoint&#46;  It is designated for use in
     * applications expecting a status code to indicate that the
     * connection was closed abnormally, e&#46;g&#46;, without sending or
     * receiving a Close control frame
     * </i>
     */
    public static final int ABNORMAL = 1006;


    /**
     * 1007;
     * <i>
     * 1007 indicates that an endpoint is terminating the connection
     * because it has received data within a message that was not
     * consistent with the type of the message (e&#46;g&#46;, non-UTF-8
     * [<a href="http://tools.ietf.org/html/rfc3629">RFC3629</a>] data
     * within a text message)
     * </i>
     */
    public static final int INCONSISTENT = 1007;


    /**
     * 1008;
     * <i>
     * 1008 indicates that an endpoint is terminating the connection
     * because it has received a message that violates its policy&#46;
     * This is a generic status code that can be returned when there
     * is no other more suitable status code (e&#46;g&#46;, 1003 or 1009)
     * or if there is a need to hide specific details about the policy
     * </i>
     */
    public static final int VIOLATED = 1008;


    /**
     * 1009;
     * <i>
     * 1009 indicates that an endpoint is terminating the connection
     * because it has received a message that is too big for it to
     * process
     * </i>
     */
    public static final int OVERSIZE = 1009;


    /**
     * 1010;
     * <i>
     * 1010 indicates that an endpoint (client) is terminating the
     * connection because it has expected the server to negotiate
     * one or more extension, but the server didn't return them in
     * the response message of the WebSocket handshake&#46;  The
     * list of extensions that are needed SHOULD appear in the
     * /reason/ part of the Close frame&#46; Note that this status
     * code is not used by the server, because it can fail the
     * WebSocket handshake instead
     * </i>
     */
    public static final int UNEXTENDED = 1010;


    /**
     * 1011;
     * <i>
     * 1011 indicates that a server is terminating the connection because
     * it encountered an unexpected condition that prevented it from
     * fulfilling the request
     * </i>
     */
    public static final int UNEXPECTED = 1011;


    /**
     * 1015;
     * <i>
     * 1015 is a reserved value and MUST NOT be set as a status code in a
     * Close control frame by an endpoint&#46;  It is designated for use in
     * applications expecting a status code to indicate that the
     * connection was closed due to a failure to perform a TLS handshake
     * (e&#46;g&#46;, the server certificate can't be verified)
     * </i>
     */
    public static final int INSECURE = 1015;


    private WebSocketCloseCode()
    {
    }
}