jsf-spring-integration - mavenizing

(cherry picked from commit eba201c)
This commit is contained in:
Slavisa Baeldung
2016-05-26 11:22:26 +02:00
parent ef53002000
commit 6e6f7c4e1e
7 changed files with 59 additions and 33 deletions
@@ -1,7 +1,3 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.baeldung.springintegration.dao;
import java.util.ArrayList;
@@ -10,16 +6,13 @@ import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.PostConstruct;
/**
* @author Tayo
*/
public class UserManagementDAOImpl extends IUserManagementDAO {
private List<String> users;
@PostConstruct
public void initUserList() {
users = new ArrayList<String>();
users = new ArrayList<>();
}
@Override
@@ -1,10 +0,0 @@
userName.maxLength = 8
userName.minLength = 4
password.minLength = 8
password.maxLength = 12
zip.length = 5
password.regexp = ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{4,8}$
safetext.regexp = ^[a-zA-Z0-9 .-]+$
zip.regexp = ^\d{5}
security.salt = G0d$3nd
birthdate.format = MM dd yyyy
@@ -1,23 +0,0 @@
message.unmatchedPasswords = The passwords you have entered do not match
message.valueRequired = This value is required
message.invalidPassword = Your passwords must match and must contain at least one each of upper case letters, lower case letters, and digits.
message.invalidDate = The date value supplied is invalid. It should be of the format MM/DD/YYYY
message.invalidZip = Your zip code should be a 5 digit numeric value
message.conversionError = An invalid value was supplied
label.firstName = First Name
label.lastName = Last Name
label.username = Username
label.firstPassword = Password
label.confirmPassword = Confirm Password
label.saveButton = Save
label.cancelButton = Cancel
label.returnHomeButton = Return
label.dateOfBirth = Date of Birth
label.city = City
label.street = Street Address
label.zip = Zip Code
label.postal = Postal Code
message.success = Operation Successful
message.failure = Operation Failed
account.success = Account Successfully created
conversion.error = An invalid value was submitted for this field