/** * Short address entity class. * Defines the stucture and contains the short address. */ public class ShortAddress { /** *The persons first name. */ public String firstName = ""; /** *The persons second name. */ public String secondName = ""; /** *The persons phone number */ public String phoneNumber = ""; /** *Default constructor enables the creation of the entity class to be created without attributes. */ public ShortAddress() {} /** *Constructor of ShortAddress enabling the creation of the entity with attributes. */ public ShortAddress(String firstName, String secondName, String phoneNumber) { this.firstName = firstName; this.secondName = secondName; this.phoneNumber = phoneNumber; } }