Uses of Class
org.botlibre.sdk.config.UserConfig

Packages that use UserConfig
org.botlibre.sdk   
org.botlibre.sdk.activity   
org.botlibre.sdk.activity.actions   
org.botlibre.sdk.activity.livechat   
 

Uses of UserConfig in org.botlibre.sdk
 

Methods in org.botlibre.sdk that return UserConfig
 UserConfig SDKConnection.connect(UserConfig config)
          Validate the user credentials (password, or token).
 UserConfig SDKConnection.create(UserConfig config)
          Create a new user.
 UserConfig SDKConnection.fetch(UserConfig config)
          Fetch the user details for the user credentials.
 UserConfig SDKConnection.getUser()
          Return the current connected user.
 UserConfig LiveChatConnection.getUser()
          Return the current user.
 UserConfig SDKConnection.update(UserConfig config)
          Update the user details.
 UserConfig SDKConnection.updateIcon(java.lang.String file, UserConfig config)
          Update the user's icon.
 

Methods in org.botlibre.sdk that return types with arguments of type UserConfig
 java.util.List<UserConfig> SDKConnection.getUsers(java.lang.String usersCSV)
          Return the list of user details for the comma separated values list of user ids.
 

Methods in org.botlibre.sdk with parameters of type UserConfig
 void LiveChatConnection.connect(ChannelConfig channel, UserConfig user)
          Connection to the live chat server channel.
 UserConfig SDKConnection.connect(UserConfig config)
          Validate the user credentials (password, or token).
 UserConfig SDKConnection.create(UserConfig config)
          Create a new user.
 UserConfig SDKConnection.fetch(UserConfig config)
          Fetch the user details for the user credentials.
 void SDKConnection.flag(UserConfig config)
          Flag the user post as offensive, a reason is required.
 void SDKConnection.setUser(UserConfig user)
          Set the current connected user.
 UserConfig SDKConnection.update(UserConfig config)
          Update the user details.
 UserConfig SDKConnection.updateIcon(java.lang.String file, UserConfig config)
          Update the user's icon.
 

Uses of UserConfig in org.botlibre.sdk.activity
 

Fields in org.botlibre.sdk.activity declared as UserConfig
static UserConfig MainActivity.user
           
static UserConfig MainActivity.viewUser
           
 

Uses of UserConfig in org.botlibre.sdk.activity.actions
 

Constructors in org.botlibre.sdk.activity.actions with parameters of type UserConfig
HttpChangeUserIconAction(android.app.Activity activity, java.lang.String file, UserConfig config)
           
HttpConnectAction(android.app.Activity activity, UserConfig config, boolean finish)
           
HttpCreateUserAction(android.app.Activity activity, UserConfig config)
           
HttpFlagUserAction(android.app.Activity activity, UserConfig config)
           
HttpUpdateUserAction(android.app.Activity activity, UserConfig config)
           
 

Uses of UserConfig in org.botlibre.sdk.activity.livechat
 

Methods in org.botlibre.sdk.activity.livechat with parameters of type UserConfig
 void LiveChatActivity.boot(UserConfig user)
           
 void LiveChatActivity.pvt(UserConfig user)
           
 void LiveChatActivity.viewUser(UserConfig user)
           
 void LiveChatActivity.whisper(UserConfig user)
           
 

Method parameters in org.botlibre.sdk.activity.livechat with type arguments of type UserConfig
 void LiveChatActivity.setUsers(java.util.List<UserConfig> users)
           
 

Constructor parameters in org.botlibre.sdk.activity.livechat with type arguments of type UserConfig
UserListAdapter(android.app.Activity activity, int resourceId, java.util.List<UserConfig> items)