summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java
index c58f4fe7..3abf39e7 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/data/ILoALevelMapper.java
@@ -30,7 +30,7 @@ public interface ILoALevelMapper {
* @param qaa, but not null
* @return An eIDAS LoA if there is a mapping, otherwise null
*/
- public String mapToeIDASLoA(String qaa);
+ String mapToeIDASLoA(String qaa);
/**
* Map an arbitrary QAA level to PVP SecClass
@@ -38,7 +38,7 @@ public interface ILoALevelMapper {
* @param qaa, but not null
* @return A PVP SecClass if there is a mapping, otherwise null
*/
- public String mapToSecClass(String qaa);
+ String mapToSecClass(String qaa);
/**
@@ -48,5 +48,5 @@ public interface ILoALevelMapper {
* @return A STORK QAA level
*/
@Deprecated
- public String mapeIDASQAAToSTORKQAA(String eidasqaaLevel);
+ String mapeIDASQAAToSTORKQAA(String eidasqaaLevel);
}