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

no.difi.sdp.client2.domain.digital_post.Sikkerhetsnivaa Maven / Gradle / Ivy

There is a newer version: 7.0.0-RC2
Show newest version
package no.difi.sdp.client2.domain.digital_post;

import no.difi.begrep.sdp.schema_v10.SDPSikkerhetsnivaa;

public enum Sikkerhetsnivaa {

    /**
     * "Mellomhøyt" sikkerhetsnivå.
     *
     * Vanligvis passord.
     */
    NIVAA_3(SDPSikkerhetsnivaa.NIVAA_3),

    /**
     * Offentlig godkjent to-faktor elektronisk ID.
     *
     * For eksempel BankID, Buypass eller Commfides.
     */
    NIVAA_4(SDPSikkerhetsnivaa.NIVAA_4);

    private final SDPSikkerhetsnivaa xmlValue;

    Sikkerhetsnivaa(SDPSikkerhetsnivaa xmlValue) {
        this.xmlValue = xmlValue;
    }

    public SDPSikkerhetsnivaa getXmlValue() {
        return xmlValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy