io.lsn.spring.auth.configuration.properties.TokenProperties Maven / Gradle / Ivy
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;
}
}