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

com.iframework.uaa.auth.autoconfigure.properties.AuthTokenProperties Maven / Gradle / Ivy

The newest version!
package com.iframework.uaa.auth.autoconfigure.properties;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "uaa.auth.token")
public class AuthTokenProperties {

    private String privateKey;

    private Integer hours = 12;

    public String getPrivateKey() {
        return privateKey;
    }

    public void setPrivateKey(String privateKey) {
        this.privateKey = privateKey;
    }

    public Integer getHours() {
        return hours;
    }

    public void setHours(Integer hours) {
        this.hours = hours;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy