diff options
| -rw-r--r-- | id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java index d5a6a1b70..d19080c25 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java @@ -368,6 +368,14 @@ public class AuthenticationDataBuilder implements MOAIDAuthConstants {  		if (extractor.containsAttribute(PVPConstants.BPK_NAME)) {  			String pvpbPK = extractor.getSingleAttributeValue(PVPConstants.BPK_NAME); +			 +			if (pvpbPK.startsWith("bPK:")) { +				Logger.warn("Attribute " + PVPConstants.BPK_NAME  +					+ " contains a not standardize prefix! Staring attribute value correction process ..."); +				pvpbPK = pvpbPK.substring("bPK:".length()); +				 +			} +			  			String[] spitted = pvpbPK.split(":");  			authData.setBPK(spitted[1]);  			if (MiscUtil.isEmpty(authData.getBPKType())) { | 
