Uses of Enum Class
tech.lastbox.jwt.JwtAlgorithm
-
Uses of JwtAlgorithm in tech.lastbox.jwt
Methods in tech.lastbox.jwt that return JwtAlgorithmModifier and TypeMethodDescriptionJwtConfig.getJwtAlgorithm()Gets the JWT signing algorithm.static JwtAlgorithmReturns the enum constant of this class with the specified name.static JwtAlgorithm[]JwtAlgorithm.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in tech.lastbox.jwt with parameters of type JwtAlgorithmModifierConstructorDescriptionJwtConfig(JwtAlgorithm jwtAlgorithm, String secretKey, String issuer, long expirationAmount, ExpirationTimeUnit expirationTimeUnit) Constructs a JwtConfig without a token store.JwtConfig(JwtAlgorithm jwtAlgorithm, String secretKey, String issuer, long expirationAmount, ExpirationTimeUnit expirationTimeUnit, TokenStore tokenStore) Constructs a JwtConfig instance with all configurations, including a token store.JwtConfig(JwtAlgorithm jwtAlgorithm, String secretKey, List<String> issuers, long expirationAmount, ExpirationTimeUnit expirationTimeUnit) Constructs a JwtConfig with multiple issuers and no token store.JwtConfig(JwtAlgorithm jwtAlgorithm, String secretKey, List<String> issuers, long expirationAmount, ExpirationTimeUnit expirationTimeUnit, TokenStore tokenStore) Constructs a JwtConfig with multiple issuers and a token store.