Title / Description
Code package org.librae.common.dao; import java.io.Serializable; import java.util.List; import java.util.Map; import org.hibernate.Session; import org.librae.common.exception.LibraeException; /** * Generic DAO (Data Access Object) with common methods to CRUD POJOs. * <p> * Extend this interface if you want typesafe (no casting necessary) DAO's for * your domain objects. * * @author <a href="mailto:bwnoll@gmail.com">Bryan Noll</a> * @param <T> * a type variable * @param <PK> * the primary key for that type */ public interface GenericDAO<T, PK extends Serializable> { }
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code