Module org.jooq
Package org.jooq.impl

Class DAOImpl<R extends UpdatableRecord<R>,P,T>

java.lang.Object
org.jooq.impl.DAOImpl<R,P,T>
All Implemented Interfaces:
DAO<R,P,T>

public abstract class DAOImpl<R extends UpdatableRecord<R>,P,T> extends Object implements DAO<R,P,T>
A common base implementation for generated DAO.

Unlike many other elements in the jOOQ API, DAO may be used in the context of Spring, CDI, or EJB lifecycle management. This means that no methods in the DAO type hierarchy must be made final. See also https://github.com/jOOQ/ jOOQ/issues/4696 for more details.

Author:
Lukas Eder