public static Customer example1() {
   Customer customer = new Customer();
   customer.address = Address.example1();
   customer.email = org.eclipse.persistence.testing.models.events.EmailAccount.example1();
   customer.phoneNumber = Phone.example1();
   ((Vector) customer.orders.getValue()).add(Order.example2());
   ((Vector) customer.orders.getValue()).add(Order.example1());
   customer.associations.add("Mickey Mouse Club");
   customer.associations.add("Canadian Penitentiary System");
   customer.name = "John Lancy";
   customer.creditCard = new CreditCard();
   customer.creditCard.number = "346556544565";
   customer.creditCard.expiry = "04/03";
   return customer;
 }