// Assume getters and setters on each class class Order { Customer customer; Address billingAddress; } class Customer { Name name; } class Name { String firstName; String lastName; } class Address { String street; String city; }