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

de.svenkubiak.ninja.auth.enums.Constants Maven / Gradle / Ivy

package de.svenkubiak.ninja.auth.enums;

/**
 * 
 * @author svenkubiak
 *
 */
public enum Constants {
    AUTH_COOKIE_NAME("auth.cookie.name"),
    AUTH_COOKIE_EXPIRES("auth.cookie.expires"),
    AUTH_COOKIE_ENCRYPT("auth.cookie.encrypt"),
    DEFAULT_COOKIE_SUFFIX("NINJA-AUTH"),
    AUTH_REDIRECT_URL("auth.login.redirect"),
    APPLICATION_SECRET("application.secret"),
    AUTHENTICATEDUSER("authenticateduser");
    
    private final String value;

    Constants (String value) {
        this.value = value;
    }

    public String get() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy