
uk.co.mruoc.fake.jwt.token.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fake-jwt-auth-server Show documentation
Show all versions of fake-jwt-auth-server Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.fake.jwt.token;
import lombok.Builder;
import lombok.Data;
import java.time.Duration;
@Builder
@Data
public class Token {
private final String value;
private final Duration expiry;
public long getExpiryMillis() {
return expiry.toMillis();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy