Package sfs2x.client.entities.variables
Class ReservedBuddyVariables
- java.lang.Object
-
- sfs2x.client.entities.variables.ReservedBuddyVariables
-
public class ReservedBuddyVariables extends java.lang.Object
The ReservedBuddyVariables class contains the constants describing the SmartFoxServer API reserved Buddy Variable names. Reserved Buddy Variables are used to store specific buddy-related informations.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
BV_NICKNAME
The Buddy Variable with this name stores the optional nickname of the user in a buddy list.static java.lang.String
BV_ONLINE
The Buddy Variable with this name keeps track of the online/offline state of the user in a buddy list.static java.lang.String
BV_STATE
The Buddy Variable with this name stores the custom state of the user in a buddy list.
-
Constructor Summary
Constructors Constructor Description ReservedBuddyVariables()
-
-
-
Field Detail
-
BV_ONLINE
public static final java.lang.String BV_ONLINE
The Buddy Variable with this name keeps track of the online/offline state of the user in a buddy list. This variable is persistent, which means that the online/offline state is preserved upon disconnection.
-
BV_STATE
public static final java.lang.String BV_STATE
The Buddy Variable with this name stores the custom state of the user in a buddy list. This variable is persistent, which means that the custom state is preserved upon disconnection.
-
BV_NICKNAME
public static final java.lang.String BV_NICKNAME
The Buddy Variable with this name stores the optional nickname of the user in a buddy list. This variable is persistent, which means that the nickname is preserved upon disconnection.
-
-