Interface | Description |
---|---|
GeneralDAO |
Interface for general Data Access Object that can be used for any type domain
object.
|
GenericDAO<T,ID extends java.io.Serializable> |
Interface for a Data Access Object that can be used for a single specified
type domain object.
|
Class | Description |
---|---|
DAODispatcher |
This is an implementation of GeneralDAO that delegates to other DAOs
depending on what entity class is being processed.
|
GeneralDAOImpl |
Implementation of
GeneralDAO using Hibernate. |
GenericDAOImpl<T,ID extends java.io.Serializable> |
Implementation of
GenericDAO using Hibernate. |
JPABaseDAO |
Base class for DAOs that uses JPA EnityManagers and JPA Query Language.
|