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

io.lsn.spring.auth.configuration.properties.TokenProperties Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.lsn.spring.auth.configuration.properties;

/**
 * @author Patryk Szlagowski 
 */
public class TokenProperties {

    private Integer ttlForRenewal = 10;
    private Integer toExpireExtend = 2;

    public Integer getTtlForRenewal() {
        return ttlForRenewal;
    }

    public void setTtlForRenewal(Integer ttlForRenewal) {
        this.ttlForRenewal = ttlForRenewal;
    }

    public Integer getToExpireExtend() {
        return toExpireExtend;
    }

    public void setToExpireExtend(Integer toExpireExtend) {
        this.toExpireExtend = toExpireExtend;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy