summaryrefslogtreecommitdiff
path: root/eaaf_core
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-02-24 12:12:21 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-02-24 12:12:21 +0100
commit1ee6f1e152f3ff29d3f09c8078711fc6cb65a148 (patch)
treee6efd53183b96309576042779e30ffc81bf86fc8 /eaaf_core
parent57464d13eb5d74f62493350e90bb385a37c0320a (diff)
downloadEAAF-Components-1ee6f1e152f3ff29d3f09c8078711fc6cb65a148.tar.gz
EAAF-Components-1ee6f1e152f3ff29d3f09c8078711fc6cb65a148.tar.bz2
EAAF-Components-1ee6f1e152f3ff29d3f09c8078711fc6cb65a148.zip
fix wrong or missing error messages
Diffstat (limited to 'eaaf_core')
-rw-r--r--eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java2
-rw-r--r--eaaf_core/src/main/resources/messages/eaaf_core_messages.properties2
2 files changed, 3 insertions, 1 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java
index 8f87cbfa..3fab0a4e 100644
--- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java
+++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/builder/AbstractAuthenticationDataBuilder.java
@@ -445,7 +445,7 @@ public abstract class AbstractAuthenticationDataBuilder implements IAuthenticati
if (StringUtils.isEmpty(authData.getIdentificationValue()) && StringUtils.isEmpty(pvpBpkValue)
&& StringUtils.isEmpty(authData.getBpk()) && pvpEncBpkAttr == null) {
log.info(
- "Can not build authData, because moaSession include no bPK, encrypted bPK or baseID");
+ "Can not build authData, because session include no bPK, encrypted bPK or baseID");
throw new EaafBuilderException("builder.08",
new Object[] { "No " + PvpAttributeDefinitions.BPK_FRIENDLY_NAME + " or "
+ PvpAttributeDefinitions.EID_SOURCE_PIN_FRIENDLY_NAME + " or "
diff --git a/eaaf_core/src/main/resources/messages/eaaf_core_messages.properties b/eaaf_core/src/main/resources/messages/eaaf_core_messages.properties
index 5a508ccf..1916a7fc 100644
--- a/eaaf_core/src/main/resources/messages/eaaf_core_messages.properties
+++ b/eaaf_core/src/main/resources/messages/eaaf_core_messages.properties
@@ -1,4 +1,6 @@
eaaf.core.00=Requested URL: {0} is NOT allowed by configuration.
+builder.08=Authentication process could NOT completed. Reason: {0}
+