A clock represents a time source that can be used when creating and verifying JWTs. @since 0.7.0
| 23 | * @since 0.7.0 |
| 24 | */ |
| 25 | public interface Clock { |
| 26 | |
| 27 | /** |
| 28 | * Returns the clock's current timestamp at the instant the method is invoked. |
| 29 | * |
| 30 | * @return the clock's current timestamp at the instant the method is invoked. |
| 31 | */ |
| 32 | Date now(); |
| 33 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…