Uses of Class
de.xima.fc.exceptions.InvalidTokenException
-
Packages that use InvalidTokenException Package Description de.xima.fc.api.entity Package for the API access of the model classes.de.xima.fc.api.rest.pub.impl.security.controller de.xima.fc.dao.impl de.xima.fc.dao.interfaces de.xima.fc.handler.entity de.xima.fc.handler.interfaces.entity de.xima.fc.security.token -
-
Uses of InvalidTokenException in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity that throw InvalidTokenException Modifier and Type Method Description RefreshTokenUserDataDTO
UserTokenAPI. getRefreshTokenUserData(UserContext uc, @NotNull String refreshToken)
Get the refresh token user data.RefreshTokenUserDataDTO
UserTokenAPI. getRefreshTokenUserData(UserContext uc, @NotNull UUID refreshTokenId)
Get the refresh token user data.UserRefreshToken
UserTokenAPI. updateRefreshToken(UserContext uc, @NotNull String refreshToken, @NotNull IClientDescriptor clientDescriptor)
Updates the refresh token. -
Uses of InvalidTokenException in de.xima.fc.api.rest.pub.impl.security.controller
Methods in de.xima.fc.api.rest.pub.impl.security.controller that throw InvalidTokenException Modifier and Type Method Description AuthenticationTokenResponse
UserTokenController. refreshTokens(String clientName, String refreshToken)
Refreshes the tokens and returns the new tokens. -
Uses of InvalidTokenException in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that throw InvalidTokenException Modifier and Type Method Description RefreshTokenUserDataDTO
UserRefreshTokenDao. getRefreshTokenUserData(IEntityContext ec, String refreshToken)
RefreshTokenUserDataDTO
UserRefreshTokenDao. getRefreshTokenUserData(IEntityContext ec, UUID refreshTokenId)
UserRefreshToken
UserRefreshTokenDao. updateRefreshToken(IEntityContext ec, String refreshToken, IClientDescriptor clientDescriptor)
-
Uses of InvalidTokenException in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that throw InvalidTokenException Modifier and Type Method Description RefreshTokenUserDataDTO
IUserRefreshTokenDao. getRefreshTokenUserData(IEntityContext ec, @NotNull String refreshToken)
RefreshTokenUserDataDTO
IUserRefreshTokenDao. getRefreshTokenUserData(IEntityContext ec, @NotNull UUID refreshTokenId)
UserRefreshToken
IUserRefreshTokenDao. updateRefreshToken(IEntityContext ec, String refreshToken, IClientDescriptor clientDescriptor)
-
Uses of InvalidTokenException in de.xima.fc.handler.entity
Methods in de.xima.fc.handler.entity that throw InvalidTokenException Modifier and Type Method Description RefreshTokenUserDataDTO
UserTokenHandler. getRefreshTokenUserData(UserContext uc, @NotNull String refreshToken)
RefreshTokenUserDataDTO
UserTokenHandler. getRefreshTokenUserData(UserContext uc, @NotNull UUID refreshTokenId)
UserRefreshToken
UserTokenHandler. updateRefreshToken(UserContext uc, String refreshToken, IClientDescriptor clientDescriptor)
-
Uses of InvalidTokenException in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity that throw InvalidTokenException Modifier and Type Method Description RefreshTokenUserDataDTO
IUserTokenHandler. getRefreshTokenUserData(UserContext uc, @NotNull String refreshToken)
RefreshTokenUserDataDTO
IUserTokenHandler. getRefreshTokenUserData(UserContext uc, @NotNull UUID refreshTokenId)
UserRefreshToken
IUserTokenHandler. updateRefreshToken(UserContext uc, String refreshToken, IClientDescriptor clientDescriptor)
-
Uses of InvalidTokenException in de.xima.fc.security.token
Methods in de.xima.fc.security.token that throw InvalidTokenException Modifier and Type Method Description static com.alibaba.fastjson.JSONObject
InternalTokenController. verifyTokenAndReadPayload(String token, String tokenSecret)
Verifies the given token and reads the payload.
-