01: package org.xorm.tests.model; 02: 03: public interface Employee { 04: String getFirstName(); 05: 06: void setFirstName(String firstName); 07: 08: String getLastName(); 09: 10: void setLastName(String lastName); 11: 12: Address getAddress(); 13: 14: void setAddress(Address address); 15: }