Homework 10 (JSF 1-5 notes)
Create a JSF project.
The project should have a bean class named StudentData.
There should be an initial JSF JSP page with a form. The form should allow a user to enter a studentID, name, GPA (double), email, verbal SAT score (integer), and math SAT score(integer). Just use text fields for the form.
The action of the form should cause the action controller to display a success page or a failure page. Have the success page display if the total SAT score is at least 1000 and the GPA is at least 3.1. Have the failure page displayed otherwise.
The success page should display "Accepted" and all the bean data should be displayed.
The failure page should display "Rejected" and all the bean data should be displayed.
Use message.properties files to display as much text as possible. Have an English and a French version of the properties files. Use Google translate to translate as best as you can.