javax.websocket
Class CloseReason

java.lang.Object
  extended by javax.websocket.CloseReason

public class CloseReason
extends Object

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 FRC 6455.

Since:
DRAFT 001
Author:
dannycoward

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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CloseReason

public CloseReason(CloseReason.CloseCode closeCode,
                   String reasonPhrase)
Creates a reason for closing a web socket connection with the given code and reason phrase.

Parameters:
closeCode - the close code
reasonPhrase - the reason phrase
Method Detail

getCloseCode

public CloseReason.CloseCode getCloseCode()
The Close code associated with this CloseReason.

Returns:
the close code.

getReasonPhrase

public String getReasonPhrase()
The reason phrase associated with this CloseReason.

Returns:
the reason phrase.



Copyright © 2012 Oracle and/or its affiliates. All rights reserved.