com.atlassian.connect.spring.internal.jwt.JwtTooEarlyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlassian-connect-spring-boot-jwt Show documentation
Show all versions of atlassian-connect-spring-boot-jwt Show documentation
Provides JSON Web Token handling for Atlassian Connect for Spring Boot
The newest version!
package com.atlassian.connect.spring.internal.jwt;
import java.util.Date;
public class JwtTooEarlyException extends JwtVerificationException {
public JwtTooEarlyException(Date notBefore, Date now, final int leewaySeconds) {
super(String.format("Not-before time is %s and time is now %s (%d leeway seconds is allowed)", notBefore, now, leewaySeconds));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy