package demo17; import org.openswing.swing.message.receive.java.ValueObjectImpl; import java.math.BigDecimal; import java.sql.Date; /** * <p>Title: OpenSwing Framework</p> * <p>Description: Value Object used to store addresses.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * <p> </p> * @author Mauro Carniel * @version 1.0 */ public class AddressVO extends ValueObjectImpl { private BigDecimal id; private String address; private String city; private String state; private String country; private Integer phone; public AddressVO() { } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public BigDecimal getId() { return id; } public void setId(BigDecimal id) { this.id = id; } public Integer getPhone() { return phone; } public void setPhone(Integer phone) { this.phone = phone; } }