]> git.mxchange.org Git - pizzaservice-war.git/blob - web/WEB-INF/faces-config.xml
updated jar + fixed navigation target
[pizzaservice-war.git] / web / WEB-INF / faces-config.xml
1 <?xml version='1.0' encoding='UTF-8'?>
2 <faces-config version="2.2"
3                           xmlns="http://xmlns.jcp.org/xml/ns/javaee"
4                           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5                           xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
6         <validator>
7                 <validator-id>PrivacyTermsCheckboxValidator</validator-id>
8                 <validator-class>org.mxchange.jcoreee.validator.bool.privacy_terms.PrivacyTermsCheckboxValidator</validator-class>
9         </validator>
10         <validator>
11                 <validator-id>NameValidator</validator-id>
12                 <validator-class>org.mxchange.jcoreee.validator.string.names.NameValidator</validator-class>
13         </validator>
14         <validator>
15                 <validator-id>ItemAmountValidator</validator-id>
16                 <validator-class>org.mxchange.jcoreee.validator.number.item_amount.ItemAmountValidator</validator-class>
17         </validator>
18         <navigation-rule>
19                 <from-view-id>*</from-view-id>
20                 <navigation-case>
21                         <from-outcome>customer_register</from-outcome>
22                         <to-view-id>/customer/register.xhtml</to-view-id>
23                 </navigation-case>
24                 <navigation-case>
25                         <from-outcome>index</from-outcome>
26                         <to-view-id>/index.xhtml</to-view-id>
27                 </navigation-case>
28                 <navigation-case>
29                         <from-outcome>customer_lost_passwd</from-outcome>
30                         <to-view-id>/customer/lost_passwd.xhtml</to-view-id>
31                 </navigation-case>
32                 <navigation-case>
33                         <from-outcome>customer_login</from-outcome>
34                         <to-view-id>/customer/login.xhtml</to-view-id>
35                 </navigation-case>
36                 <navigation-case>
37                         <from-outcome>terms</from-outcome>
38                         <to-view-id>/terms.xhtml</to-view-id>
39                 </navigation-case>
40                 <navigation-case>
41                         <from-outcome>privacy</from-outcome>
42                         <to-view-id>/privacy.xhtml</to-view-id>
43                 </navigation-case>
44                 <navigation-case>
45                         <from-outcome>imprint</from-outcome>
46                         <to-view-id>/imprint.xhtml</to-view-id>
47                 </navigation-case>
48                 <navigation-case>
49                         <from-outcome>logout</from-outcome>
50                         <to-view-id>/bye.xhtml</to-view-id>
51                 </navigation-case>
52                 <navigation-case>
53                         <from-outcome>admin_product</from-outcome>
54                         <to-view-id>/admin/product.xhtml</to-view-id>
55                 </navigation-case>
56                 <navigation-case>
57                         <from-outcome>admin_category</from-outcome>
58                         <to-view-id>/admin/category.xhtml</to-view-id>
59                 </navigation-case>
60                 <navigation-case>
61                         <from-outcome>admin_index</from-outcome>
62                         <to-view-id>/admin/index.xhtml</to-view-id>
63                 </navigation-case>
64                 <navigation-case>
65                         <from-outcome>basket</from-outcome>
66                         <to-view-id>/basket.xhtml</to-view-id>
67                 </navigation-case>
68                 <navigation-case>
69                         <from-outcome>item_not_changed</from-outcome>
70                         <to-view-id>/errorHandler.xhtml</to-view-id>
71                 </navigation-case>
72         </navigation-rule>
73         <navigation-rule>
74                 <from-view-id>/basket.xhtml</from-view-id>
75                 <navigation-case>
76                         <from-outcome>checkout</from-outcome>
77                         <to-view-id>/customer/checkout.xhtml</to-view-id>
78                 </navigation-case>
79         </navigation-rule>
80         <navigation-rule>
81                 <from-view-id>/customer/checkout.xhtml</from-view-id>
82                 <navigation-case>
83                         <from-outcome>checkout2</from-outcome>
84                         <to-view-id>/customer/checkout2.xhtml</to-view-id>
85                 </navigation-case>
86         </navigation-rule>
87         <navigation-rule>
88                 <from-view-id>/index.xhtml</from-view-id>
89                 <navigation-case>
90                         <from-outcome>item_added</from-outcome>
91                         <to-view-id>/item_added.xhtml</to-view-id>
92                 </navigation-case>
93         </navigation-rule>
94         <navigation-rule>
95                 <from-view-id>/customer/checkout2.xhtml</from-view-id>
96                 <navigation-case>
97                         <from-outcome>checkout_done</from-outcome>
98                         <to-view-id>/customer/checkout_done.xhtml</to-view-id>
99                 </navigation-case>
100                 <navigation-case>
101                         <from-outcome>empty_basket</from-outcome>
102                         <to-view-id>/customer/empty_basket.xhtml</to-view-id>
103                 </navigation-case>
104         </navigation-rule>
105 </faces-config>