person.setJobInterests("will work for beer");
List<Organization> organizations = new ArrayList<Organization>();
PersonOrganizationDb organization1 = new PersonOrganizationDb();
OrganizationAddressDb orgAddress1 = new OrganizationAddressDb();
orgAddress1.setFormatted("1 Shindig Drive");
organization1.setAddress(orgAddress1);
organization1.setDescription("lots of coding");
organization1.setEndDate(buildDate("2010-10-10"));
organization1.setField("Software Engineering");
organization1.setName("Apache.com");
organization1.setSalary("$1000000000");
organization1.setStartDate(buildDate("1995-01-01"));
organization1.setSubField("Development");
organization1.setTitle("Grand PooBah");
organization1.setWebpage("http://incubator.apache.org/projects/shindig.html");
organization1.setType("job");
PersonOrganizationDb organization2 = new PersonOrganizationDb();
OrganizationAddressDb orgAddress2 = new OrganizationAddressDb();
orgAddress2.setFormatted("1 Skid Row");
organization2.setAddress(orgAddress2);
organization2.setDescription("");
organization2.setEndDate(buildDate("1995-01-01"));
organization2.setField("College");
organization2.setName("School of hard Knocks");