Skip to content

Instantly share code, notes, and snippets.

@senthilmuthiah
Created March 25, 2013 10:35
Show Gist options
  • Save senthilmuthiah/5236268 to your computer and use it in GitHub Desktop.
Save senthilmuthiah/5236268 to your computer and use it in GitHub Desktop.
Address Book Using JPA +ZK + Spring.
package addressbook.dao;
import java.util.List;
public interface CRUDDao {
<T> List<T> getAll(Class<T> klass);
<T> T save(T t);
<T> void delete(T t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment