private final List<User> users = new ArrayList<User>();
private final List<Hotel> hotels = new ArrayList<Hotel>();
public ApplicationInitializer() {
users.addAll(Arrays.asList(
new User("Shane Bryzak", "shane", "shane@example.com", "brisbane"),
new User("Dan Allen", "dan", "dan@example.com", "laurel"),
new User("Lincoln Baxter III", "lincoln", "lincoln@example.com", "charlotte"),
new User("Jose Freitas", "jose", "jose.freitas@example.com", "brazil")));
hotels.addAll(Arrays.asList(
new Hotel(129, 3, "Marriott Courtyard", "Tower Place, Buckhead", "Atlanta", "GA", "30305", "USA"),
new Hotel(84, 4, "Doubletree Atlanta-Buckhead", "3342 Peachtree Road NE", "Atlanta", "GA", "30326", "USA"),
new Hotel(289, 4, "W New York - Union Square", "201 Park Avenue South", "New York", "NY", "10003", "USA"),