diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-11-24 06:48:12 +0100 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-11-24 06:48:12 +0100 | 
| commit | 889361a1a38078e7533b22a2419ead066577bf8f (patch) | |
| tree | 716a02aed503489bf6bed16131fe9d15f1e4cb2e | |
| parent | 28cf5bd5c149d76b0097d8bbf86a10080ffb75d1 (diff) | |
| download | moa-id-spss-889361a1a38078e7533b22a2419ead066577bf8f.tar.gz moa-id-spss-889361a1a38078e7533b22a2419ead066577bf8f.tar.bz2 moa-id-spss-889361a1a38078e7533b22a2419ead066577bf8f.zip | |
fix check if ELGA mandate-service module is configured
| -rw-r--r-- | id/server/modules/moa-id-module-elga_mandate_service/src/main/java/at/gv/egovernment/moa/id/auth/modules/elgamandates/ELGAMandatesAuthModuleImpl.java | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/id/server/modules/moa-id-module-elga_mandate_service/src/main/java/at/gv/egovernment/moa/id/auth/modules/elgamandates/ELGAMandatesAuthModuleImpl.java b/id/server/modules/moa-id-module-elga_mandate_service/src/main/java/at/gv/egovernment/moa/id/auth/modules/elgamandates/ELGAMandatesAuthModuleImpl.java index c2efe5bfc..f14ffb111 100644 --- a/id/server/modules/moa-id-module-elga_mandate_service/src/main/java/at/gv/egovernment/moa/id/auth/modules/elgamandates/ELGAMandatesAuthModuleImpl.java +++ b/id/server/modules/moa-id-module-elga_mandate_service/src/main/java/at/gv/egovernment/moa/id/auth/modules/elgamandates/ELGAMandatesAuthModuleImpl.java @@ -27,6 +27,7 @@ import org.springframework.beans.factory.annotation.Autowired;  import at.gv.egovernment.moa.id.auth.modules.internal.DefaultCitizenCardAuthModuleImpl;  import at.gv.egovernment.moa.id.commons.api.AuthConfiguration; +import at.gv.egovernment.moa.id.commons.config.MOAIDConfigurationConstants;  import at.gv.egovernment.moa.id.process.api.ExecutionContext;  import at.gv.egovernment.moa.util.MiscUtil; @@ -56,8 +57,9 @@ public class ELGAMandatesAuthModuleImpl extends DefaultCitizenCardAuthModuleImpl  		//check if BKU authentication is selected and ELGA-MandateService is configurated  		if (MiscUtil.isNotEmpty(selectedProcessID)) { -			if (MiscUtil.isNotEmpty(authConfig.getBasicMOAIDConfiguration( -					ELGAMandatesAuthConstants.CONFIG_PROPS_ENTITYID))) +			if (MiscUtil.isNotEmpty(authConfig.getConfigurationWithKey( +					MOAIDConfigurationConstants.PREFIX_MOAID_GENERAL + "."  +							+ ELGAMandatesAuthConstants.CONFIG_PROPS_ENTITYID)))  				return "DefaultAuthenticationWithELGAMandates";  		} | 
