swpchat.protocol
Interface ReceiverTokens

All Superinterfaces:
ChatTokens
All Known Implementing Classes:
ReceiverProtocolHandler

public interface ReceiverTokens
extends ChatTokens

The tokens used in the communication between chat receiver client and server. This interface defines more constants only, the basic structure is documented in ChatTokens.


Field Summary
static java.lang.String STR_LOGIN
          Logging in
static java.lang.String STR_LOGIN_BEGIN
          Constant initial part of a login message.
static java.lang.String STR_LOGIN_RE_BEGIN
          Constant initial part of a login reply message.
static java.lang.String STR_LOGOUT
          Logging out
static java.lang.String STR_LOGOUT_BEGIN
          Constant initial part of a logout message.
static java.lang.String STR_LOGOUT_RE_BEGIN
          Constant initial part of a logout reply message.
static java.lang.String STR_PLAY
          Receiving a sound request
static java.lang.String STR_PLAY_BEGIN
          Constant initial part of a sound request message.
static java.lang.String STR_RECEIVE
          Receiving a message
static java.lang.String STR_RECEIVE_BEGIN
          Constant initial part of a receive message.
static java.lang.String STR_RECEIVE_USERINFO
          receive userInfo command: server -> client
static java.lang.String STR_TOPICCHANGED
          Receiving topicChanged
static java.lang.String STR_WHISPRECEIVE
          Receiving a whisper-message
 
Fields inherited from interface swpchat.protocol.ChatTokens
CHAR_ARG_SEP, CHAR_MSG_END, CHAR_MSG_EOL, CHAR_QUOTE, CHAR_STRING_DELIMITER, STR_ARG_SEP, STR_AUTHORIZE, STR_MSG_END, STR_MSG_EOL, STR_NEG_ARG, STR_NEGATIVE, STR_POS_ARG, STR_POSITIVE, STR_QUOTE, STR_REPLY, STR_STRING_DELIMITER, STR_WAIT
 

Field Detail

STR_LOGIN

public static final java.lang.String STR_LOGIN
Logging in

STR_LOGOUT

public static final java.lang.String STR_LOGOUT
Logging out

STR_RECEIVE

public static final java.lang.String STR_RECEIVE
Receiving a message

STR_PLAY

public static final java.lang.String STR_PLAY
Receiving a sound request

STR_WHISPRECEIVE

public static final java.lang.String STR_WHISPRECEIVE
Receiving a whisper-message

STR_RECEIVE_USERINFO

public static final java.lang.String STR_RECEIVE_USERINFO
receive userInfo command: server -> client

STR_TOPICCHANGED

public static final java.lang.String STR_TOPICCHANGED
Receiving topicChanged

STR_LOGIN_BEGIN

public static final java.lang.String STR_LOGIN_BEGIN
Constant initial part of a login message. Currently, that's all.

STR_LOGOUT_BEGIN

public static final java.lang.String STR_LOGOUT_BEGIN
Constant initial part of a logout message. Currently, that's all.

STR_RECEIVE_BEGIN

public static final java.lang.String STR_RECEIVE_BEGIN
Constant initial part of a receive message.

STR_PLAY_BEGIN

public static final java.lang.String STR_PLAY_BEGIN
Constant initial part of a sound request message.

STR_LOGIN_RE_BEGIN

public static final java.lang.String STR_LOGIN_RE_BEGIN
Constant initial part of a login reply message.

STR_LOGOUT_RE_BEGIN

public static final java.lang.String STR_LOGOUT_RE_BEGIN
Constant initial part of a logout reply message.