Package-level declarations

Types

Link copied to clipboard
abstract class AbstractJwtProvider(secretKey: SecretKey) : JwtProvider

Specification for JWT functions including Secret Key.

Link copied to clipboard
class DefaultJwtProvider(secretKey: SecretKey, accessTokenExpire: Long, refreshTokenExpire: Long) : AbstractJwtProvider

Implementation of AbstractJwtProvider with functions related to JWT authentication. The JWT authentication function is implemented based on Default JWT Authentication.

Link copied to clipboard
interface JwtProvider

Specification of basic JWT functions.