diff options
author | Thomas <> | 2022-06-03 15:24:01 +0200 |
---|---|---|
committer | Thomas <> | 2022-06-03 15:24:01 +0200 |
commit | 7f0a925a72dc9841280e66fcba1515af62b9efdf (patch) | |
tree | 87c47d50ef3e092d18d6de4ae15cf0cf60900a2a /modules/core_commons_eidas | |
parent | 38d7758281b9cb8ba0f1a7e8a8d10098bcf2dcb8 (diff) | |
download | National_eIDAS_Gateway-7f0a925a72dc9841280e66fcba1515af62b9efdf.tar.gz National_eIDAS_Gateway-7f0a925a72dc9841280e66fcba1515af62b9efdf.tar.bz2 National_eIDAS_Gateway-7f0a925a72dc9841280e66fcba1515af62b9efdf.zip |
test(core): add smoke test with full eIDAS OutGoing login and error-handling
Diffstat (limited to 'modules/core_commons_eidas')
-rw-r--r-- | modules/core_commons_eidas/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/core_commons_eidas/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml b/modules/core_commons_eidas/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml new file mode 100644 index 00000000..cde9687e --- /dev/null +++ b/modules/core_commons_eidas/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:context="http://www.springframework.org/schema/context" + xmlns:tx="http://www.springframework.org/schema/tx" + xmlns:aop="http://www.springframework.org/schema/aop" + xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd + http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> + + <context:annotation-config /> + + <import + resource="classpath:specificCommunicationDefinitionApplicationContext.xml" /> + + <bean id="specificConnectorAttributesFile" + class="java.lang.String"> + <constructor-arg value="eidas-attributes.xml" /> + </bean> + + <bean id="specificAdditionalAttributesFile" + class="java.lang.String"> + <constructor-arg value="additional-attributes.xml" /> + </bean> + + <bean id="specificConnectorAttributesFileWithPath" + class="java.lang.String"> + <constructor-arg + value="#{specificConnectorConfigRepository}#{specificConnectorAttributesFile}" /> + </bean> + + <bean id="specificConnectorAdditionalAttributesFileWithPath" + class="java.lang.String"> + <constructor-arg + value="#{specificConnectorConfigRepository}#{specificAdditionalAttributesFile}" /> + </bean> + +</beans>
\ No newline at end of file |