sk.seges.sesam.dao.ICrudDAO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sesam-core Show documentation
Show all versions of sesam-core Show documentation
Core interfaces and support classes to ease
information systems development. Usually requirement is to implement
multi-tier application using database, DAOs, services, models and
listeners.
The newest version!
/**
*
*/
package sk.seges.sesam.dao;
import sk.seges.sesam.domain.IDomainObject;
/**
* @author ladislav.gazo
*/
public interface ICrudDAO> extends IDataAccessObject, IFinderDAO {
E persist(E entity);
E merge(E entity);
void remove(E entity);
}