Interface JwtAuthorityKey

All Known Subinterfaces:
JwtAccessKey, JwtRefreshKey

public interface JwtAuthorityKey
Common attributes for authority key.
Author:
Daniel Sagenschneider
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Obtains the seconds since Epoch for expiry of this JwtAuthorityKey.
    long
    Obtains the seconds since Epoch for when this JwtAuthorityKey becomes active.
  • Method Details

    • getStartTime

      long getStartTime()
      Obtains the seconds since Epoch for when this JwtAuthorityKey becomes active.
      Returns:
      Seconds since Epoch for when this JwtAuthorityKey becomes active.
    • getExpireTime

      long getExpireTime()
      Obtains the seconds since Epoch for expiry of this JwtAuthorityKey.
      Returns:
      Seconds since Epoch for expiry of this JwtAuthorityKey.