Subversion Repositories bacoAlunos

Rev

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"/>
1830 jmachado 20
 
1312 jmachado 21
    </global-forwards>
22
 
23
 
24
    <action-mappings>
25
 
26
 
27
 
28
 
29
        <!-- Start Pages -->
30
 
1525 jmachado 31
        <action path="/WelcomePedagogicSurvey" forward="page.welcome.pae"/>
1312 jmachado 32
 
1585 jmachado 33
        <action path="/user/ChangePassword" forward="page.change.password.pae"/>
34
        <action path="/requestChangePassword" forward="page.request.change.password.pae"/>
35
        <action path="/user/changeMyPassword"
36
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
37
                name="EmptyForm"
38
                scope="request"
39
                parameter="dispatch"
40
                validate="false"
41
                input="page.change.password.pae">
42
            <forward name="success" path="page.pae.separators.home"/>
43
            <forward name="fail.change.pass" path="page.change.password.pae"/>
44
        </action>
45
        <action path="/requestChangeMyPassword"
46
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
47
                name="EmptyForm"
48
                scope="request"
49
                parameter="dispatch"
50
                validate="false"
51
                input="page.change.password.pae">
52
            <forward name="success" path="request.change.pass.response"/>
53
        </action>
1312 jmachado 54
 
1585 jmachado 55
 
1312 jmachado 56
        <!--Authentication-->
57
        <action path="/authenticatePae"
58
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
59
                name="EmptyForm"
60
                scope="request"
61
                parameter="dispatch"
62
                validate="false"
1525 jmachado 63
                input="page.welcome.pae">
1312 jmachado 64
            <forward name="success" path="page.pae.separators.home"/>
1525 jmachado 65
            <forward name="logout" path="page.welcome.pae"/>
1312 jmachado 66
            <forward name="firstTimeAuthenticate" path="page.pae.separators.home"/>
67
        </action>
68
 
69
        <action path="/user/homePae" forward="page.pae.separators.home"/>
70
 
71
        <action path="/LogoutPae" forward="/authenticatePae.do?dispatch=logout"/>
72
 
73
 
74
 
1686 jmachado 75
        <!--Authentication-->
76
        <action path="/authenticateWidget"
77
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
78
                name="WidgetModelForm"
79
                scope="request"
80
                parameter="dispatch"
81
                validate="true"
82
                input="page.widget.json.fail.validations">
83
        </action>
84
 
85
 
1312 jmachado 86
    </action-mappings>
87
 
88
</struts-config>