April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
Interface CustomerDAO
npublic interface CustomerDAO {
n   public int insertCustomer(...);
n   public boolean deleteCustomer(...);
n   public Customer findCustomer(...);
n   public boolean updateCustomer(...);
n   public RowSet selectCustomersRS(...);
n   public Collection selectCustomersTO(...);
n   ...
n}