Package io.quarkus.test.security.jwt
Annotation Type Claim
-
@Retention(RUNTIME) @Target({}) public @interface Claim
-
-
Element Detail
-
key
String key
Claim name
-
-
-
value
String value
Claim value
-
-
-
type
ClaimType type
Claim value type. If this type is set toClaimType.DEFAULTthen the value will be converted to String unless the claim is a standard claim such as `exp` (expiry), `iat` (issued at), `nbf` (not before), `auth_time` (authentication time) whose value will be converted to Long or `email_verified` whose value will be converted to Boolean.- Default:
- io.quarkus.test.security.jwt.ClaimType.DEFAULT
-
-