summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2019-05-03 07:00:13 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2019-05-03 07:00:13 +0200
commit804cef0be970ac118dc5df42019e72f56f7e82b5 (patch)
tree91f47a12700afe605fd0007f730485711cb2ecc4
parentdcff4e8f7fff4547f3d6d1adbb91db9b1bd1607d (diff)
parent55a2c1d75eb488384cc87a230d1ec3978b13bba9 (diff)
downloadEAAF-Components-804cef0be970ac118dc5df42019e72f56f7e82b5.tar.gz
EAAF-Components-804cef0be970ac118dc5df42019e72f56f7e82b5.tar.bz2
EAAF-Components-804cef0be970ac118dc5df42019e72f56f7e82b5.zip
Merge branch 'master' of gitlab.iaik.tugraz.at:egiz/eaaf_components
-rw-r--r--eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/builder/attributes/EIDSourcePIN.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/builder/attributes/EIDSourcePIN.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/builder/attributes/EIDSourcePIN.java
index 0db3f1fe..4db2d87d 100644
--- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/builder/attributes/EIDSourcePIN.java
+++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/builder/attributes/EIDSourcePIN.java
@@ -51,7 +51,7 @@ public class EIDSourcePIN implements IPVPAttributeBuilder {
throw new AttributePolicyException(EID_SOURCE_PIN_NAME);
else {
- if (StringUtils.isNoneEmpty(authData.getIdentificationValue()))
+ if (StringUtils.isEmpty(authData.getIdentificationValue()))
throw new UnavailableAttributeException(EID_SOURCE_PIN_NAME);
return g.buildStringAttribute(EID_SOURCE_PIN_FRIENDLY_NAME, EID_SOURCE_PIN_NAME, authData.getIdentificationValue());