package com.acme.bean; import java.util.*; import java.io.*; public class Contact implements Serializable { private String name=null; private String phone=null; private String email=null; private String comment=null; public Contact(){} public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }