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

io.robe.auth.token.configuration.TokenBasedAuthConfiguration Maven / Gradle / Ivy

package io.robe.auth.token.configuration;

public class TokenBasedAuthConfiguration {

    private String tokenKey;

    private String domain;

    private String path = "/";

    private int maxage = 0;

    private boolean secure = false;

    private int poolSize = 4;

    private String algorithm;

    private String serverPassword;


    public String getTokenKey() {
        return tokenKey;
    }

    public String getDomain() {
        return domain;
    }

    public String getPath() {
        return path;
    }

    public int getMaxage() {
        return maxage;
    }

    public boolean isSecure() {
        return secure;
    }

    public int getPoolSize() {
        return poolSize;
    }

    public String getAlgorithm() {
        return algorithm;
    }

    public String getServerPassword() {
        return serverPassword;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy