Package jakarta.websocket
Enum Class CloseReason.CloseCodes
- All Implemented Interfaces:
CloseReason.CloseCode
,Serializable
,Comparable<CloseReason.CloseCodes>
,Constable
- Enclosing class:
- CloseReason
public static enum CloseReason.CloseCodes
extends Enum<CloseReason.CloseCodes>
implements CloseReason.CloseCode
An Enumeration of status codes for a web socket close that are defined in the specification.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription1003 indicates that an endpoint is terminating the connection because it has received a type of data it cannot accept (e.g., an endpoint that understands only text data MAY send this if it receives a binary message).1006 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint.1001 indicates that an endpoint is "going away", such as a server going down or a browser having navigated away from a page.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.1005 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint.1000 indicates a normal closure, meaning that the purpose for which the connection was established has been fulfilled.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.g., non-UTF-8 data within a text message).1002 indicates that an endpoint is terminating the connection due to a protocol error.Reserved.1012 indicates that the service will be restarted.1015 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint.1009 indicates that an endpoint is terminating the connection because it has received a message that is too big for it to process.1013 indicates that the service is experiencing overload1011 indicates that a server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request.1008 indicates that an endpoint is terminating the connection because it has received a message that violates its policy. -
Method Summary
Modifier and TypeMethodDescriptionstatic CloseReason.CloseCode
getCloseCode
(int code) Creates a CloseCode from the given int code number.int
getCode()
Return the code number of this status code.static CloseReason.CloseCodes
Returns the enum constant of this class with the specified name.static CloseReason.CloseCodes[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL_CLOSURE
1000 indicates a normal closure, meaning that the purpose for which the connection was established has been fulfilled. -
GOING_AWAY
1001 indicates that an endpoint is "going away", such as a server going down or a browser having navigated away from a page. -
PROTOCOL_ERROR
1002 indicates that an endpoint is terminating the connection due to a protocol error. -
CANNOT_ACCEPT
1003 indicates that an endpoint is terminating the connection because it has received a type of data it cannot accept (e.g., an endpoint that understands only text data MAY send this if it receives a binary message). -
RESERVED
Reserved. The specific meaning might be defined in the future. -
NO_STATUS_CODE
1005 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint. It is designated for use in applications expecting a status code to indicate that no status code was actually present. -
CLOSED_ABNORMALLY
1006 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint. It is designated for use in applications expecting a status code to indicate that the connection was closed abnormally, e.g., without sending or receiving a Close control frame. -
NOT_CONSISTENT
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.g., non-UTF-8 data within a text message). -
VIOLATED_POLICY
1008 indicates that an endpoint is terminating the connection because it has received a message that violates its policy. This is a generic status code that can be returned when there is no other more suitable status code (e.g., 1003 or 1009) or if there is a need to hide specific details about the policy. -
TOO_BIG
1009 indicates that an endpoint is terminating the connection because it has received a message that is too big for it to process. -
NO_EXTENSION
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. The list of extensions that are needed SHOULD appear in the /reason/ part of the Close frame. Note that this status code is not used by the server, because it can fail the WebSocket handshake instead. -
UNEXPECTED_CONDITION
1011 indicates that a server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request. -
SERVICE_RESTART
1012 indicates that the service will be restarted. -
TRY_AGAIN_LATER
1013 indicates that the service is experiencing overload -
TLS_HANDSHAKE_FAILURE
1015 is a reserved value and MUST NOT be set as a status code in a Close control frame by an endpoint. 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.g., the server certificate can't be verified).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getCloseCode
Creates a CloseCode from the given int code number. This method throws an IllegalArgumentException if the int is not one of the- Parameters:
code
- the integer code number- Returns:
- a new CloseCode with the given code number
- Throws:
IllegalArgumentException
- if the code is not a valid close code
-
getCode
public int getCode()Return the code number of this status code.- Specified by:
getCode
in interfaceCloseReason.CloseCode
- Returns:
- the code.
-