use of jodd.json.mock.Address in project jodd by oblac.
the class DataCreator method createJodder.
public Person createJodder() {
Address home = new Address("173 Hackers Drive", "New York", "NY", new Zipcode("123123"));
Address work = new Address("42 Computer Center", "Earth", "Milkiway", new Zipcode("42"));
Phone pagerPhone = new Phone(PhoneNumberType.PAGER, "123 555-1234");
Phone cellPhone = new Phone(PhoneNumberType.MOBILE, "770 777 5432");
Calendar cal = Calendar.getInstance();
cal.set(1988, Calendar.NOVEMBER, 23, 8, 11);
Person charlie = new Person("Igor", "Spasic", cal.getTime(), home, work);
cal = Calendar.getInstance();
cal.set(1993, Calendar.JUNE, 6, 8, 11);
charlie.setFirstBaseBallGame(new Timestamp(cal.getTime().getTime()));
charlie.getPhones().add(pagerPhone);
charlie.getPhones().add(cellPhone);
charlie.getHobbies().add("read");
charlie.getHobbies().add("run");
charlie.getHobbies().add("code");
return charlie;
}
use of jodd.json.mock.Address in project jodd by oblac.
the class DataCreator method createPedro.
public Person createPedro() {
Zipcode pedroZip = new Zipcode("848485");
Address pedroHome = new Address("12 Acrelèndia Way", "Rio de Janeiro", "Brazil", pedroZip);
Address pedroWork = new Address("12 Acrelèndia Way", "Rio de Janeiro", "Brazil", pedroZip);
Phone pedroPhone = new Phone(PhoneNumberType.MOBILE, "123 555 2323");
Calendar pedroCal = Calendar.getInstance();
pedroCal.set(1980, Calendar.APRIL, 12, 11, 45);
Person pedro = new Person("Pedro", "Sanchez", pedroCal.getTime(), pedroHome, pedroWork);
pedro.getPhones().add(pedroPhone);
return pedro;
}
use of jodd.json.mock.Address in project jodd by oblac.
the class DataCreator method createModesty.
public Person createModesty() {
Address benhome = new Address("NN Island", "Blue Cave", "ta", new Zipcode("82742"));
Address benwork = new Address("44 Planetary St.", "Neptune", "Milkiway", new Zipcode("12345"));
Calendar benCal = Calendar.getInstance();
benCal.set(1986, Calendar.AUGUST, 8, 8, 11);
Person ben = new Person("Modesty", "Blase", benCal.getTime(), benhome, benwork);
benCal = Calendar.getInstance();
benCal.set(1995, Calendar.MAY, 21, 8, 11);
ben.setFirstBaseBallGame(new Timestamp(benCal.getTime().getTime()));
ben.getHobbies().add("sneak");
ben.getHobbies().add("kill");
ben.getHobbies().add("fight");
return ben;
}