01: package com.uvw.travel; 02: 03: import java.io.Serializable; 04: 05: /** 06: * @author Adrian Price 07: */ 08: public interface Address extends Serializable { 09: String getAddress1(); 10: 11: String getAddress2(); 12: 13: String getState(); 14: 15: String getPostCode(); 16: 17: String getCountry(); 18: }