kaiyu
2020-11-18 8dc1a393928b0195bf0b5a6d6f8daec6e4a043b1
src/main/java/com/moral/security/config/JwtSettings.java
@@ -7,7 +7,7 @@
@ConfigurationProperties(prefix = "moral.security.jwt")
public class JwtSettings {
    /**
     * {@link com.moral.security.model.token.JwtToken} will expire after this time.
     * {@link JwtToken} will expire after this time.
     */
    private Integer tokenExpirationTime;
@@ -17,12 +17,12 @@
    private String tokenIssuer;
    
    /**
     * Key is used to sign {@link com.moral.security.model.token.JwtToken}.
     * Key is used to sign {@link JwtToken}.
     */
    private String tokenSigningKey;
    
    /**
     * {@link com.moral.security.model.token.JwtToken} can be refreshed during this timeframe.
     * {@link JwtToken} can be refreshed during this timeframe.
     */
    private Integer refreshTokenExpTime;