All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.foodtechlab.lib.auth.service.domain.token.config.TokenLifeCycleConfig Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package ru.foodtechlab.lib.auth.service.domain.token.config;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;

@AllArgsConstructor(staticName = "of")
@NoArgsConstructor
@Getter
public class TokenLifeCycleConfig {
    private Long accessTokenLifetimeInSeconds = 10 * 60L;
    private Long refreshTokenLifetimeInSeconds = 365 * 24 * 60 * 60L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy