Subversion Repositories bacoAlunos

Rev

Rev 1525 | Rev 1686 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
<?xml version="1.0" encoding="UTF-8"?>
2
 
3
<!--<!DOCTYPE struts-config PUBLIC-->
4
        <!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
5
        <!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->
6
 
7
<struts-config>
8
 
9
 
10
    <form-beans>
11
 
12
    </form-beans>
13
 
14
    <global-exceptions>
15
 
16
    </global-exceptions>
17
 
18
    <global-forwards>
19
        <forward name="welcomePedagogicSurvey" path="/WelcomePedagogicSurvey.do"/>
20
    </global-forwards>
21
 
22
 
23
    <action-mappings>
24
 
25
 
26
 
27
 
28
        <!-- Start Pages -->
29
 
1525 jmachado 30
        <action path="/WelcomePedagogicSurvey" forward="page.welcome.pae"/>
1312 jmachado 31
 
1585 jmachado 32
        <action path="/user/ChangePassword" forward="page.change.password.pae"/>
33
        <action path="/requestChangePassword" forward="page.request.change.password.pae"/>
34
        <action path="/user/changeMyPassword"
35
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
36
                name="EmptyForm"
37
                scope="request"
38
                parameter="dispatch"
39
                validate="false"
40
                input="page.change.password.pae">
41
            <forward name="success" path="page.pae.separators.home"/>
42
            <forward name="fail.change.pass" path="page.change.password.pae"/>
43
        </action>
44
        <action path="/requestChangeMyPassword"
45
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
46
                name="EmptyForm"
47
                scope="request"
48
                parameter="dispatch"
49
                validate="false"
50
                input="page.change.password.pae">
51
            <forward name="success" path="request.change.pass.response"/>
52
        </action>
1312 jmachado 53
 
1585 jmachado 54
 
1312 jmachado 55
        <!--Authentication-->
56
        <action path="/authenticatePae"
57
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
58
                name="EmptyForm"
59
                scope="request"
60
                parameter="dispatch"
61
                validate="false"
1525 jmachado 62
                input="page.welcome.pae">
1312 jmachado 63
            <forward name="success" path="page.pae.separators.home"/>
1525 jmachado 64
            <forward name="logout" path="page.welcome.pae"/>
1312 jmachado 65
            <forward name="firstTimeAuthenticate" path="page.pae.separators.home"/>
66
        </action>
67
 
68
        <action path="/user/homePae" forward="page.pae.separators.home"/>
69
 
70
        <action path="/LogoutPae" forward="/authenticatePae.do?dispatch=logout"/>
71
 
72
 
73
 
74
    </action-mappings>
75
 
76
</struts-config>