Class JwtClaimsSet

  • All Implemented Interfaces:

    
    public final class JwtClaimsSet
    
                        

    Claims represents JWT (JSON Web Token) Claims Spec: https://datatracker.ietf.org/doc/html/rfc7519#section-4

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public final class JwtClaimsSet.Builder

      Builder for JwtClaimsSet.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final String getIss() identifies the principal that issued the
      final String getSub() the principal that is the subject of the JWT.
      final String getAud() the recipients that the JWT is intended for.
      final Long getExp() the expiration time on or after which the JWT must not be accepted for processing.
      final Long getNbf() the time before which the JWT must not be accepted for processing.
      final Long getIat() the time at which the JWT was issued.
      final String getJti() provides a unique identifier for the JWT.
      final Map<String, Object> getMisc() additional claims (i.e.
      String toString()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait