Subversion Repositories bacoAlunos

Rev

Rev 152 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="UTF-8"?>

<!--<!DOCTYPE struts-config PUBLIC-->
<!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
<!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->

<struts-config>

    <form-beans>
        <form-bean type="pt.estgp.estgweb.web.form.profile.ProfileForm" name="ProfileForm"/>
    </form-beans>

    <global-exceptions>

    </global-exceptions>

    <global-forwards>

    </global-forwards>


    <action-mappings>

        <action path="/user/startHome" forward="/user/home.do"/>
        <action path="/user/home" forward="page.separators.home"/>

        <action path="/user/startServiceZone" forward="/user/serviceZone.do?separator=4"/>
        <action path="/user/serviceZone" forward="page.separators.serviceZone"/>

        <action path="/user/startUserProfile" forward="/user/profile.do?separator=3&amp;dispatch=changeProfile"/>
        <action path="/user/profile"
               type="pt.estgp.estgweb.web.controllers.profile.ProfileController"
               name="ProfileForm"
               scope="request"
               parameter="dispatch"
               validate="false"
               input="page.load.profile">
            <forward name="success" path="page.separators.home"/>
            <forward name="load" path="page.separators.profile"/>
        </action>
        <action path="/user/startSubmitAnnouncementIntranet" forward="/user/loadAnnouncementFromServiceZone.do?dispatch=start&amp;separator=4"/>
        <action path="/user/startLoadAnnouncementFromHome" forward="/user/loadAnnouncementFromHome.do?separator=1&amp;dispatch=load"/>
        <action path="/user/loadAnnouncementFromHome"
               type="pt.estgp.estgweb.web.controllers.announcements.AnnouncementsController"
               name="AnnouncementsForm"
               scope="request"
               parameter="dispatch"
               input="page.submit.announcement.intranet"
               validate="false">
            <forward name="success" path="page.separators.serviceZone"/>
            <forward name="load" path="page.load.announcement.intranet.from.home"/>
            <forward name="submit" path="page.submit.announcement.intranet"/>
        </action>
        <action path="/user/startLoadAnnouncementFromServiceZone" forward="/user/loadAnnouncementFromServiceZone.do?separator=4&amp;dispatch=load"/>
        <action path="/user/loadAnnouncementFromServiceZone"
               type="pt.estgp.estgweb.web.controllers.announcements.AnnouncementsController"
               name="AnnouncementsForm"
               scope="request"
               parameter="dispatch"
               input="page.submit.announcement.intranet"
               validate="false">
            <forward name="load" path="page.load.announcement.intranet.from.service.zone"/>
            <forward name="submit" path="page.submit.announcement.intranet"/>
        </action>
    </action-mappings>

</struts-config>