package com.adobe.objects; import java.util.Date; public class SimpleCustomer { private int customerId; private String customerName; private String customerAddress; private String customerType; private Date entryModifiedDate; public int getCustomerId() { return customerId; } public void setCustomerId(int customerId) { this.customerId = customerId; } public String getCustomerName() { return customerName; } public void setCustomerName(String customerName) { this.customerName = customerName; } public String getCustomerAddress() { return customerAddress; } public void setCustomerAddress(String customerAddress) { this.customerAddress = customerAddress; } public String getCustomerType() { return customerType; } public void setCustomerType(String customerType) { this.customerType = customerType; } public void setEntryModifiedDate(Date entryModifiedDate) { this.entryModifiedDate = entryModifiedDate; } public Date getEntryModifiedDate() { return entryModifiedDate; } }