KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tcspring > beans > orm > data > CustomerDao


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tcspring.beans.orm.data;
5
6 import com.tcspring.beans.orm.domain.Customer;
7
8 import java.util.List JavaDoc;
9
10 public interface CustomerDao {
11   
12   public List JavaDoc getAll();
13   
14   public List JavaDoc getAllWithOnlyOnePermission();
15
16   public void save(Customer customer);
17 }
18
Popular Tags