/** * */ /** * Short address * * @author fbergeon * */ public class ShortAddress { // Fields public String firstName; public String secondName; public String phoneNumber; /** * Constructor * * @param firstName * @param secondName * @param phoneNumber */ public ShortAddress(String firstName, String secondName, String phoneNumber) { this.firstName = firstName; this.secondName = secondName; this.phoneNumber = phoneNumber; } }