org.sakaiproject.genericdao.api.BasicGenericDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generic-dao Show documentation
Show all versions of generic-dao Show documentation
Generic Dao is a Java package which allows a developer to skip writing
DAOs for their persistence objects when they are using Spring and/or Hibernate.
The package was originally created by Aaron Zeckoski for the Evaluation System
project but was repackaged to make it distributable by request. It is used in the
RSF framework (http://www2.caret.cam.ac.uk/rsfwiki/). Note about the BeanUtils
provided dependency: BeanUtils is not required if you are not using it in your
project. Note about the Hibernate provided dependency: Hibernate is not required
if you are not using it in your project.
/******************************************************************************
* BasicGenericDao.java - created by [email protected] on Aug 31, 2006
*
* Copyright (c) 2006 Aaron Zeckoski
* Licensed under the Apache License, Version 2
*
* A copy of the Apache License, Version 2 has been included in this
* distribution and is available at: http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Contributors:
* Aaron Zeckoski ([email protected]) - primary
*
*****************************************************************************/
package org.sakaiproject.genericdao.api;
import org.sakaiproject.genericdao.api.finders.ByPropsFinder;
import org.sakaiproject.genericdao.api.finders.BySearchFinder;
/**
* This is a Basic DAO interface which can be used to handle basic DAO
* CRUD (create, read, update, delete) operations for any persistent object.
* This will meet very simple DAO needs and only includes operations which
* can be expected to run efficiently.
*
* @author Aaron Zeckoski ([email protected])
*/
@SuppressWarnings("deprecation")
public interface BasicGenericDao
extends GenericDao, ByPropsFinder, BySearchFinder {
}