Package ai.nexconn.chatui.userinfo
Interface UserDataProvider.UserInfoProvider
-
- All Implemented Interfaces:
public interface UserDataProvider.UserInfoProviderProvider for user information.
If a chat participant has never authenticated through the server, the SDK has no user info for that user and will call this provider to retrieve it.
-
-
Method Summary
Modifier and Type Method Description abstract UserInfogetUserInfo(String userId)Returns the user information for the given user ID. -
-
Method Detail
-
getUserInfo
abstract UserInfo getUserInfo(String userId)
Returns the user information for the given user ID.
- Parameters:
userId- the user ID.- Returns:
the corresponding UserInfo, or
nullif not available.
-
-
-
-