diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-26 07:40:01 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2021-01-28 08:27:13 +0100 |
commit | 9bb8ba415faee8bd454da6def37daf545bb559e1 (patch) | |
tree | 3b98fd19a897d3e5215ee1033831722f99e94335 /connector/src/test | |
parent | 0b703512f08bfc1cda18e6688c39fdc536045fdd (diff) | |
download | National_eIDAS_Gateway-9bb8ba415faee8bd454da6def37daf545bb559e1.tar.gz National_eIDAS_Gateway-9bb8ba415faee8bd454da6def37daf545bb559e1.tar.bz2 National_eIDAS_Gateway-9bb8ba415faee8bd454da6def37daf545bb559e1.zip |
update SAML2 IDP elements of MS-specific Connector to current snapshot version (1.1.12-SNAPSHOT) of eaaf_module_pvp2_idp
Diffstat (limited to 'connector/src/test')
-rw-r--r-- | connector/src/test/resources/spring/SpringTest_connector.beans.xml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/connector/src/test/resources/spring/SpringTest_connector.beans.xml b/connector/src/test/resources/spring/SpringTest_connector.beans.xml index ba385cb9..5819a915 100644 --- a/connector/src/test/resources/spring/SpringTest_connector.beans.xml +++ b/connector/src/test/resources/spring/SpringTest_connector.beans.xml @@ -38,16 +38,16 @@ <bean id="PVP2XProtocol" class="at.asitplus.eidas.specific.connector.controller.Pvp2SProfileEndpoint"> - <property name="pvpIdpCredentials"> - <ref bean="PVPEndPointCredentialProvider" /> - </property> + <property name="pvpIdpCredentials" ref="PVPEndPointCredentialProvider" /> + <property name="metadataProvider" ref="PVPMetadataProvider" /> </bean> <bean id="AuthnRequestValidator" class="at.asitplus.eidas.specific.connector.verification.AuthnRequestValidator" /> - <bean id="SAMLVerificationEngine" - class="at.gv.egiz.eaaf.modules.pvp2.impl.verification.SamlVerificationEngine" /> + <!-- bean id="SAMLVerificationEngine" + class="at.gv.egiz.eaaf.modules.pvp2.impl.verification.SamlVerificationEngine" /--> + <bean id="pvpMetadataService" class="at.gv.egiz.eaaf.modules.pvp2.idp.impl.MetadataAction"> @@ -58,9 +58,8 @@ <bean id="PVPAuthenticationRequestAction" class="at.gv.egiz.eaaf.modules.pvp2.idp.impl.AuthenticationAction"> - <property name="pvpIdpCredentials"> - <ref bean="PVPEndPointCredentialProvider" /> - </property> + <property name="pvpIdpCredentials" ref="PVPEndPointCredentialProvider" /> + <property name="metadataProvider" ref="PVPMetadataProvider" /> </bean> <bean id="eaafProtocolAuthenticationService" |