/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.api.data; public interface ILoALevelMapper { /** * Map an arbitrary QAA level to eIDAS LoA * * @param qaa, but not null * @return An eIDAS LoA if there is a mapping, otherwise null */ public String mapToeIDASLoA(String qaa); /** * Map an arbitrary QAA level to PVP SecClass * * @param qaa, but not null * @return An PVP SecClass if there is a mapping, otherwise null */ public String mapToSecClass(String qaa); }