All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.plis-web.spring.controller.xml Maven / Gradle / Ivy

Go to download

Die IsyFact-Standards bilden das architektonische, technologische und methodische Fundament der IsyFact. Sie umfassen allgemeingültige und wiederverwendbare Konzepte und Komponenten, die für die Entwicklung beliebiger Fachanwendungen relevant sind.

There is a newer version: 6.2.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!--

    See the NOTICE file distributed with this work for additional
    information regarding copyright ownership.
    The Federal Office of Administration (Bundesverwaltungsamt, BVA)
    licenses this file to you under the Apache License, Version 2.0 (the
    License). You may not use this file except in compliance with the
    License. You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    implied. See the License for the specific language governing
    permissions and limitations under the License.

-->
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">

    <!-- ========== -->
    <!-- Controller -->
    <!-- ========== -->

    <!-- Allgemeine Controller -->
    <bean id="abstractGuiController" abstract="true"
        class="de.bund.bva.isyfact.common.web.global.AbstractGuiController">
    </bean>

    <bean id="errorController" class="de.bund.bva.isyfact.common.web.exception.web.ErrorController">
                    <aop:scoped-proxy proxy-target-class="true"/>
     </bean>

    <bean id="validationController" class="de.bund.bva.isyfact.common.web.validation.ValidationController">
                <aop:scoped-proxy proxy-target-class="true"/>
    </bean>

    <bean id="tabController" class="de.bund.bva.isyfact.common.web.jsf.components.tab.TabController">
                <aop:scoped-proxy proxy-target-class="true"/>
    </bean>
    

    <bean id="messageController" class="de.bund.bva.isyfact.common.web.global.MessageController">
        <aop:scoped-proxy proxy-target-class="true"/>   
        <property name="ausnahmeIdMapper" ref="ausnahmeIdMapper"/>
    </bean>

    <bean id="jsfHelper" class="de.bund.bva.isyfact.common.web.global.JsfHelper" />

    <bean id="headerHelper" class="de.bund.bva.isyfact.common.web.global.HeaderHelper">
        <constructor-arg ref="konfiguration"/>
    </bean>
    
    <bean id="localeConfiguration" class="de.bund.bva.isyfact.common.web.locale.LocaleConfiguration">
        <property name="konfiguration" ref="konfiguration"/>
    </bean>
    
    <bean id="titlesHelper" class="de.bund.bva.isyfact.common.web.webflow.titles.TitlesHelper">
        <property name="konfiguration" ref="konfiguration"/>
    </bean>
    
    <bean id="isyWebKonfigurationHelper" class="de.bund.bva.isyfact.common.web.global.IsyWebKonfigurationHelper">
        <property name="konfiguration" ref="konfiguration"/>
    </bean>

    <bean id="globalConfigurationController" class="de.bund.bva.isyfact.common.web.global.GlobalConfigurationController">
            <aop:scoped-proxy proxy-target-class="true"/>
    </bean>

    <bean id="globalFlowController" class="de.bund.bva.isyfact.common.web.global.GlobalFlowController">
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="messageController" ref="messageController" />
        <property name="validationController" ref="validationController" />
        <property name="errorController" ref="errorController" />
        <property name="aufrufKontextVerwalter" ref="aufrufKontextVerwalter" />
        <property name="navigationMenuController" ref="navigationMenuController" />
    </bean>

    <bean id="basisController" class="de.bund.bva.isyfact.common.web.layout.BasisController"
        parent="abstractGuiController">
        <aop:scoped-proxy proxy-target-class="true"/>
    </bean>
      
    <bean id="navigationMenuController" class="de.bund.bva.isyfact.common.web.jsf.components.navigationmenu.controller.NavigationMenuController">
      <!-- Die konkrete Strategie zum Auslesen der Navigation muss als Bean in der jeweiligen Anwendung bereitgestellt werden! -->
      <property name="navigationMenuGenerierenStrategie" ref="navigationMenuGenerierenStrategie"/>
    </bean>    

    <bean id="detailseiteController" class="de.bund.bva.isyfact.common.web.layout.DetailseiteController"
        parent="abstractGuiController">
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="basisController" ref="basisController" />
    </bean>

 
    <bean id="applikationseiteController" class="de.bund.bva.isyfact.common.web.layout.ApplikationseiteController"
        parent="abstractGuiController">
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="linksnavigationController" ref="linksnavigationController" />
        <property name="quicklinksController" ref="quicklinksController" />
    </bean>

    <bean id="linksnavigationController" class="de.bund.bva.isyfact.common.web.layout.LinksnavigationController"
        parent="abstractGuiController">
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="konfiguration" ref="konfiguration" />
        <property name="aufrufKontextVerwalter" ref="aufrufKontextVerwalter" />
    </bean>
    
    <bean id="quicklinksController" class="de.bund.bva.isyfact.common.web.layout.QuicklinksController"
        parent="abstractGuiController">        
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="konfiguration" ref="konfiguration" />
    </bean>

    <bean id="zipHelper" class="de.bund.bva.isyfact.common.web.filetransfer.ZipHelper"/>

    <bean id="downloadHelper" class="de.bund.bva.isyfact.common.web.filetransfer.DownloadHelper"/>

    <bean id="hilfeController" class="de.bund.bva.isyfact.common.web.layout.HilfeController"
          parent="abstractGuiController">
        <aop:scoped-proxy proxy-target-class="true"/>
        <property name="konfiguration" ref="konfiguration" />
        <property name="servletContext" ref="servletContext" />
    </bean>

</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy