<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<!-- Sources de données -->
<!-- Beans de formulaire -->
<form-beans>
<form-bean name="signonForm" type="cis.web.aquaweb.connection.SignonForm">
</form-bean>
<form-bean name="gestionComptesForm" type="cis.web.aquaweb.comptes.GestionComptesForm">
</form-bean>
<form-bean name="gestionLogementsForm" type="cis.web.aquaweb.logement.GestionLogementsForm">
</form-bean>
<form-bean name="forwarderForm" type="cis.web.aquaweb.outils.ForwarderForm">
</form-bean>
</form-beans>
<!-- Erreurs globales -->
<global-exceptions>
</global-exceptions>
<!-- Références aval globales -->
<global-forwards>
<forward name="aquaweb" path="./aquaweb.jsp">
</forward>
<forward name="index" path="./index.jsp">
</forward>
<forward name="erreurs" path="./erreurs.jsp">
</forward>
<forward name="editionCompteJSP" path="gestionComptes/editionCompte.jsp">
</forward>
<forward name="listeComptesJSP" path="gestionComptes/listeComptes.jsp">
</forward>
<forward name="creerCompte" path="gestionComptes.do?dispatch=initialisationCreation">
</forward>
<forward name="saisieReferenceLogementJSP" path="gestionLogements/saisieReferenceLogement.jsp">
</forward>
<forward name="detailsLogementJSP" path="gestionLogements/detailsLogement.jsp">
</forward>
<forward name="detailsOccupantJSP" path="gestionLogements/detailsOccupant.jsp">
</forward>
<forward name="listeLogementsJSP" path="gestionLogements/listeLogements.jsp">
</forward>
<forward name="contactsAgenceExploitJSP" path="../contacts/contactsAgenceExploit1.jsp">
</forward>
<forward name="contactsCommercialJSP" path="contacts/contactsCommercial.jsp">
</forward>
<forward name="contactsSupportInformatiqueJSP" path="contacts/contactsSupportInformatique.jsp">
</forward>
</global-forwards>
<!-- Mappages d'action -->
<action-mappings>
<action path="/signon" type="cis.web.aquaweb.connection.SignonAction" name="signonForm" scope="request" input="./index.jsp">
</action>
<action path="/fermeture" type="cis.web.aquaweb.connection.FermetureAction">
</action>
<action path="/gestionComptes" type="cis.web.aquaweb.comptes.GestionComptesAction" input="gestionComptes/editionCompte.jsp" parameter="dispatch" name="gestionComptesForm" scope="session">
<forward name="compteSupprimeJSP" path="gestionComptes/compteSupprime.jsp">
</forward>
</action>
<action path="/listeComptes" type="cis.web.aquaweb.comptes.ListeComptesAction" input="./erreurs.jsp" parameter="dispatch" name="gestionComptesForm" scope="session">
</action>
<action path="/gestionLogements" type="cis.web.aquaweb.logement.GestionLogementsAction" input="gestionLogements/saisieReferenceLogement.jsp" parameter="dispatch" name="gestionLogementsForm" scope="session">
</action>
<action path="/forwarder" type="cis.web.aquaweb.outils.ForwarderAction" input="./erreurs.jsp" name="forwarderForm" scope="session">
</action>
</action-mappings>
<!-- Ressources de message -->
<message-resources parameter="cis.web.aquaweb.resources.ApplicationResources"/>
</struts-config>
Partager