swpchat.protocol
Interface SenderTokens

All Superinterfaces:
ChatTokens

public interface SenderTokens
extends ChatTokens

The tokens used in the communication between chat sender 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_NEW_CHANNEL
          Creating new Channel
static java.lang.String STR_PLAY
          Sending a sound request
static java.lang.String STR_PLAY_BEGIN
          Constant initial part of a play message.
static java.lang.String STR_PLAY_RE_BEGIN
          Constant initial part of a play reply message.
static java.lang.String STR_REMOVE_CHANNEL
          Removing Channel
static java.lang.String STR_RENAME_CHANNEL
          Renaming Channel
static java.lang.String STR_REQUEST_USERINFO
          request userInfo command: client -> server
static java.lang.String STR_SEND
          Sending a message
static java.lang.String STR_SEND_BEGIN
          Constant initial part of a send message.
static java.lang.String STR_SEND_RE_BEGIN
          Constant initial part of a send reply message.
static java.lang.String STR_SET_NICK
          Changing the Nickname
static java.lang.String STR_SET_NICK_BEGIN
          Constant initial part of a setNick message.
static java.lang.String STR_SET_NICK_RE_BEGIN
          Constant initial part of a setNick reply message.
static java.lang.String STR_SETTOPIC
          set topic
static java.lang.String STR_SETTOPIC_BEGIN
          Constant initial part of a settopic message.
static java.lang.String STR_WHISPER
          Whispering to a specific member of a channel
 
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_SEND

public static final java.lang.String STR_SEND
Sending a message

STR_PLAY

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

STR_WHISPER

public static final java.lang.String STR_WHISPER
Whispering to a specific member of a channel

STR_SET_NICK

public static final java.lang.String STR_SET_NICK
Changing the Nickname

STR_NEW_CHANNEL

public static final java.lang.String STR_NEW_CHANNEL
Creating new Channel

STR_RENAME_CHANNEL

public static final java.lang.String STR_RENAME_CHANNEL
Renaming Channel

STR_REMOVE_CHANNEL

public static final java.lang.String STR_REMOVE_CHANNEL
Removing Channel

STR_SETTOPIC

public static final java.lang.String STR_SETTOPIC
set topic

STR_REQUEST_USERINFO

public static final java.lang.String STR_REQUEST_USERINFO
request userInfo command: client -> server

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_SEND_BEGIN

public static final java.lang.String STR_SEND_BEGIN
Constant initial part of a send message.

STR_PLAY_BEGIN

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

STR_SET_NICK_BEGIN

public static final java.lang.String STR_SET_NICK_BEGIN
Constant initial part of a setNick 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.

STR_SEND_RE_BEGIN

public static final java.lang.String STR_SEND_RE_BEGIN
Constant initial part of a send reply message.

STR_PLAY_RE_BEGIN

public static final java.lang.String STR_PLAY_RE_BEGIN
Constant initial part of a play reply message.

STR_SET_NICK_RE_BEGIN

public static final java.lang.String STR_SET_NICK_RE_BEGIN
Constant initial part of a setNick reply message.

STR_SETTOPIC_BEGIN

public static final java.lang.String STR_SETTOPIC_BEGIN
Constant initial part of a settopic message.