1 <?xml version="1.0" encoding="UTF-8"?>
2 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
3 <description>A pizza shop application, created and open-sourced while I was at my JavaEE training.</description>
4 <display-name>Pizza-Service Application v1.0</display-name>
6 <description>Project stage.</description>
7 <param-name>javax.faces.PROJECT_STAGE</param-name>
8 <param-value>Development</param-value>
11 <description>Whether the date converter's default timezone is system's timezone.</description>
12 <param-name>javax.faces.DATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE</param-name>
13 <param-value>true</param-value>
16 <description>Whether the multi-page registration page or a single registration page is active</description>
17 <param-name>is_feature_user_register_multiple_page_enabled</param-name>
18 <param-value>true</param-value>
21 <description>Whether a user name is required for this application.</description>
22 <param-name>is_feature_user_name_required_enabled</param-name>
23 <param-value>true</param-value>
26 <description>Whether "resend confirmation link" is enabled.</description>
27 <param-name>is_feature_user_resend_confirmation_link_enabled</param-name>
28 <param-value>true</param-value>
31 <description>Whether registration page is enabled.</description>
32 <param-name>is_feature_user_registration_enabled</param-name>
33 <param-value>true</param-value>
36 <description>Whether the guest menu is enabled/shown to the user.</description>
37 <param-name>is_feature_guest_menu_enabled</param-name>
38 <param-value>true</param-value>
41 <description>Whether recovery of user passwords is enabled.</description>
42 <param-name>is_feature_user_password_recovery_enabled</param-name>
43 <param-value>true</param-value>
46 <description>Wether the personal title is required for using the general contact controller.</description>
47 <param-name>is_feature_general_personal_title_enabled</param-name>
48 <param-value>true</param-value>
51 <description>Whether personal title is required for administrative contact controller.</description>
52 <param-name>is_feature_admin_personal_title_enabled</param-name>
53 <param-value>true</param-value>
56 <description>Whether users are allowed to edit their user data.</description>
57 <param-name>is_feature_user_edit_data_enabled</param-name>
58 <param-value>true</param-value>
61 <description>Whether the user list is accessible and visible.</description>
62 <param-name>is_feature_user_list_enabled</param-name>
63 <param-value>true</param-value>
66 <description>Whether imprint page is enabled.</description>
67 <param-name>is_feature_imprint_enabled</param-name>
68 <param-value>true</param-value>
71 <description>Whether terms page is enabled.</description>
72 <param-name>is_feature_terms_enabled</param-name>
73 <param-value>true</param-value>
76 <description>Whether privacy page is enabled.</description>
77 <param-name>is_feature_privacy_enabled</param-name>
78 <param-value>true</param-value>
81 <description>Feature: Users must change password after login (with current password). Administrators can enforce this.</description>
82 <param-name>is_feature_user_must_change_password_enabled</param-name>
83 <param-value>true</param-value>
86 <description>Whether users are allowed to change their login password.</description>
87 <param-name>is_feature_change_user_password_enabled</param-name>
88 <param-value>true</param-value>
91 <description>Whether users can change their email address.</description>
92 <param-name>is_feature_user_must_change_email_address_enabled</param-name>
93 <param-value>true</param-value>
96 <description>Whether user registration page is in index or own page.</description>
97 <param-name>is_feature_user_registration_in_index_enabled</param-name>
98 <param-value>false</param-value>
101 <description>Whether user can leave both passwords empty on registration.</description>
102 <param-name>is_feature_allow_user_registration_empty_password_enabled</param-name>
103 <param-value>false</param-value>
106 <description>Maximum passwords that must be different.</description>
107 <param-name>max_user_password_history</param-name>
108 <param-value>5</param-value>
111 <description>Whether debugging of registration form is enabled.</description>
112 <param-name>is_debug_register_enabled</param-name>
113 <param-value>false</param-value>
116 <description>Whether the public user profile is enabled. If this option is enabled, the setting "is_user_name_required" must also be enabled as it is mandadory.</description>
117 <param-name>is_public_profile_enabled</param-name>
118 <param-value>true</param-value>
121 <description>Whether user names are required for completing registration.</description>
122 <param-name>is_user_name_required</param-name>
123 <param-value>true</param-value>
126 <description>Minimum password score (default 50 may be to low)</description>
127 <param-name>min_user_password_score</param-name>
128 <param-value>50</param-value>
131 <servlet-name>Faces Servlet</servlet-name>
132 <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
133 <load-on-startup>1</load-on-startup>
136 <servlet-name>pdf</servlet-name>
137 <servlet-class>org.mxchange.pizzaapplication.servlet.receipt.PizzaPdfReceiptServlet</servlet-class>
140 <servlet-name>Faces Servlet</servlet-name>
141 <url-pattern>/faces/*</url-pattern>
144 <extension>tpl</extension>
145 <mime-type>text/plain</mime-type>
148 <servlet-name>pdf</servlet-name>
149 <url-pattern>/customer/recipt.pdf</url-pattern>
157 <welcome-file>faces/index.xhtml</welcome-file>
159 <security-constraint>
160 <display-name>AdminConstraint</display-name>
161 <web-resource-collection>
162 <web-resource-name>admin</web-resource-name>
163 <description>Administrative Area</description>
164 <url-pattern>/faces/admin/*</url-pattern>
165 </web-resource-collection>
167 <description>Administrative Area Login</description>
168 <role-name>admin</role-name>
170 </security-constraint>
172 <auth-method>BASIC</auth-method>
173 <realm-name>file</realm-name>
176 <description>Administrative role</description>
177 <role-name>admin</role-name>