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

no.nav.brukerdialog.security.SecurityLevel Maven / Gradle / Ivy

There is a newer version: 1.2020.02.21_14.01-cdaccec525a6
Show newest version
package no.nav.brukerdialog.security;

public enum SecurityLevel {
    Level1(1),
    Level2(2),
    Level3(3),
    Level4(4),
    Ukjent(-1);

    private int securityLevel;

    SecurityLevel(int securityLevel) {
        this.securityLevel = securityLevel;
    }

    public int getSecurityLevel() {
        return securityLevel;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy