Interface JwtAuthorityKey
-
- All Known Subinterfaces:
JwtAccessKey
,JwtRefreshKey
public interface JwtAuthorityKey
Common attributes for authority key.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getExpireTime()
Obtains the seconds since Epoch for expiry of thisJwtAuthorityKey
.long
getStartTime()
Obtains the seconds since Epoch for when thisJwtAuthorityKey
becomes active.
-
-
-
Method Detail
-
getStartTime
long getStartTime()
Obtains the seconds since Epoch for when thisJwtAuthorityKey
becomes active.- Returns:
- Seconds since Epoch for when this
JwtAuthorityKey
becomes active.
-
getExpireTime
long getExpireTime()
Obtains the seconds since Epoch for expiry of thisJwtAuthorityKey
.- Returns:
- Seconds since Epoch for expiry of this
JwtAuthorityKey
.
-
-