} catch (ParseException e) {
// this won't happen, unfortunately we are forced to catch the
// and handle exception though...
date = null;
}
Person person = new Person("John", "Doe", "Mr.", date, "Some Place",
"male", "123456", "john.doe@somecompany.com");
Address address = new Address("The Street", 1, "1234", "The City",
"The State", "The Country");
Order order = new Order("0001", person, address, "debit");
return order;