Package de.xima.fc.user_portal.user
Interface IOAuth20User
-
- All Superinterfaces:
IUserPortalUser
,Serializable
public interface IOAuth20User extends IUserPortalUser
Interface for a user profile that is authenticated via OAuth2.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAccessToken()
Gets the access token of this user.String
getAccessTokenHeader()
Gets the header name that is to be used for the access token.String
getAccessTokenHeaderPrefix()
Gets the prefix that is to be used for the access token header.String
getRefreshToken()
Gets the refresh token of this user.-
Methods inherited from interface de.xima.fc.user_portal.user.IUserPortalUser
getDisplayName
-
-
-
-
Method Detail
-
getAccessToken
String getAccessToken()
Gets the access token of this user.- Returns:
- The access token of this user.
-
getRefreshToken
String getRefreshToken()
Gets the refresh token of this user.- Returns:
- The refresh token of this user.
-
getAccessTokenHeader
String getAccessTokenHeader()
Gets the header name that is to be used for the access token.- Returns:
- The header name that is to be used for the access token.
-
getAccessTokenHeaderPrefix
String getAccessTokenHeaderPrefix()
Gets the prefix that is to be used for the access token header.- Returns:
- The prefix that is to be used for the access token header.
-
-