fengxiang
2018-02-27 f38347a76a04a87cab5a97bfb6bdeb49a7a9a0a0
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;