diff options
author | Thomas <> | 2022-03-07 18:20:34 +0100 |
---|---|---|
committer | Thomas <> | 2022-03-09 13:19:59 +0100 |
commit | 552497957fe6509087fc9a1a33fae5812a615094 (patch) | |
tree | 3276319b87d35966da32c19c3a2731dd470fd741 /connector_lib/src/main/resources | |
parent | 2d55fe3f0f5a76c73d7c34c90c333cc4c7eb9b50 (diff) | |
download | National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.tar.gz National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.tar.bz2 National_eIDAS_Gateway-552497957fe6509087fc9a1a33fae5812a615094.zip |
refactor(core): move 'connector_lib' to 'core_common_lib'
Diffstat (limited to 'connector_lib/src/main/resources')
-rw-r--r-- | connector_lib/src/main/resources/common_gui.beans.xml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/connector_lib/src/main/resources/common_gui.beans.xml b/connector_lib/src/main/resources/common_gui.beans.xml deleted file mode 100644 index 969a40f7..00000000 --- a/connector_lib/src/main/resources/common_gui.beans.xml +++ /dev/null @@ -1,60 +0,0 @@ -<?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" - xmlns:task="http://www.springframework.org/schema/task" - 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 - http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd"> - - <bean id="contentNegotiationManager" - class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean" - primary="true"> - <property name="parameterName" value="mediaType" /> - <property name="defaultContentType" value="application/json" /> - <property name="useRegisteredExtensionsOnly" value="false" /> - <property name="mediaTypes"> - <map> - <entry key="json" value="application/json" /> - <entry key="html" value="text/html" /> - </map> - </property> - </bean> - - <bean - class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"> - <property name="order" value="1" /> - <property name="defaultViews"> - <list> - <!-- JSON View --> - <bean - class="org.springframework.web.servlet.view.json.MappingJackson2JsonView"> - <property name="contentType" value="application/json" /> - </bean> - </list> - </property> - </bean> - - - <bean id="templateEngine" - class="org.thymeleaf.spring5.SpringTemplateEngine"> - <property name="templateResolver" ref="templateResolver" /> - </bean> - - <bean class="org.thymeleaf.spring5.view.ThymeleafViewResolver"> - <property name="order" value="2" /> - <property name="templateEngine" ref="templateEngine" /> - <property name="characterEncoding" value="UTF-8" /> - </bean> - - <bean id="valitatorWithI18nSupport" - class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"> - <property name="validationMessageSource" - ref="messageSource" /> - </bean> - -</beans>
\ No newline at end of file |