1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| <?xml version="1.0"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"./dtds/struts-config_1_2.dtd">
<!-- @(#)Wana $Id: struts-config.xml 423 2007-06-19 16:50:22Z egibon $ -->
<struts-config>
<!-- ========== Data Source Definitions ================================ -->
<data-sources/>
<!-- ========== Form Bean Definitions ================================== -->
<form-beans>
<form-bean name="AuthentificationForm" type="com.wana.mvc.view.AuthentificationForm"/>
<form-bean name="CommForm" type="com.wana.mvc.view.CommForm"/>
<form-bean name="locBean" type="com.wana.mvc.model.bo.LocBean"/>
</form-beans>
<global-exceptions/>
<!-- ========== Global Exception Definitions ===========================
========== Global Forward Definitions ============================= -->
<global-forwards>
<forward name="accueilAdministrationSousSystemeAlimentation" path="/accueilAdministrationSousSystemeAlimentation.jsp"/>
<forward name="affichagePageErreur" path="/erreurPage.jsp"/>
<forward name="affichagePagePasdeResultat" path="/pasdeResultatPage.jsp"/>
<forward name="deconnexionWana" path="/authentification.jsp"/>
<forward name="authentification" path="/accueil.jsp"/>
<forward name="resultatRechercheCommunication" path="/resultatRechercheCommunication.jsp"/>
<forward name="resultatRechercheAbonne" path="/resultatRechercheAbonne.jsp"/>
<forward name="resultatRechercheInternet" path="/resultatRechercheInternet.jsp"/>
<forward name="resultatRechercheLocalisation" path="/resultatRechercheLocalisation.jsp"/>
</global-forwards>
<!-- ========== Action Mapping Definitions ============================= -->
<action-mappings>
<action input="/authentification.jsp" name="AuthentificationForm"
path="/authentification" scope="session"
type="com.wana.mvc.controller.AuthentificationAction" validate="true"/>
<action name="AuthentificationForm" path="/deconnexionWana"
scope="session" type="com.wana.mvc.controller.DeconnexionWanaAction" validate="false"/>
<action path="/resultatRechercheCommunication"
type="com.wana.mvc.controller.RechercheCommunicationAction"
scope="session"
validate="false"
input="/errResRechComm.jsp"
name="CommForm">
</action>
<action path="/rechercheCommunication"
type="com.wana.mvc.controller.RechercheCommunicationPage1Action"
scope="request"
validate="false"
input="/erreurPage.jsp"
name="CommForm">
<forward name="continue" path="/rechercheCommunication.jsp"/>
</action>
<action path="/resultatRechercheLocalisation"
type="com.wana.mvc.controller.RechercheLocalisationAction"
scope="session"
validate="false"
input="/errResRechComm.jsp"
name="locBean">
</action>
<action path="/rechercheLocalisation"
type="com.wana.mvc.controller.RechercheLocalisationPage1Action"
scope="request"
validate="false"
input="/erreurPage.jsp"
name="locBean">
<forward name="continueloc" path="/rechercheLocalisation.jsp"/>
</action>
<action input="/erreurPage.jsp" name="CommForm"
path="/resultatRechercheAbonne" scope="session"
type="com.wana.mvc.controller.RechercheAbonneAction" validate="false"/>
<action input="/erreurPage.jsp" name="CommForm"
path="/resultatRechercheInternet" scope="session"
type="com.wana.mvc.controller.RechercheInternetAction" validate="false"/>
<action input="/erreurPage.jsp" name="CommForm" path="/exportExcel"
scope="request" type="com.wana.mvc.controller.ExportExcelAction" validate="false"/>
</action-mappings>
<controller/>
<message-resources parameter="ApplicationResources"/>
<plug-in className="fr.improve.struts.taglib.layout.workflow.LayoutPlugin"/>
</struts-config> |