diff options
| -rw-r--r-- | id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java index 1d1fc5ede..1996c3d7c 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java +++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASProtocol.java @@ -186,6 +186,15 @@ public class EIDASProtocol extends AbstractAuthProtocolModulController {  				throw new AuthenticationException("stork.12", new Object[]{pendingReq.getOAURL()});  			pendingReq.setOnlineApplicationConfiguration(oaConfig); +			String spType = samlReq.getSPType(); +			if (MiscUtil.isEmpty(spType)) { +				Logger.info("Load SPType from metadata ... IS NOT IMPLEMENTED YET!!!"); +				//TODO: maybe implement this if required +							 +			} + +			Logger.debug("eIDAS request has SPType:" + spType); +			  		} catch(Exception e) {  			Logger.error("error in preprocessing step", e);  			throw new MOAIDException("error in preprocessing step", null); | 
