|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.websocket.CloseReason
public class CloseReason
A class encapsulating the reason why a web socket has been closed, or why it is being asked to close. Note the acceptable uses of codes and reason phrase defined in RFC 6455.
Nested Class Summary | |
---|---|
static interface |
CloseReason.CloseCode
A marker interface for the close codes. |
static class |
CloseReason.CloseCodes
An Enumeration of status codes for a web socket close that are defined in the specification. |
Constructor Summary | |
---|---|
CloseReason(CloseReason.CloseCode closeCode,
String reasonPhrase)
Creates a reason for closing a web socket connection with the given code and reason phrase. |
Method Summary | |
---|---|
CloseReason.CloseCode |
getCloseCode()
The Close code associated with this CloseReason. |
String |
getReasonPhrase()
The reason phrase associated with this CloseReason. |
String |
toString()
Converts the CloseReason to a debug-friendly string. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CloseReason(CloseReason.CloseCode closeCode, String reasonPhrase)
closeCode
- the close codereasonPhrase
- the reason phraseMethod Detail |
---|
public CloseReason.CloseCode getCloseCode()
public String getReasonPhrase()
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |