All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sakaiproject.genericdao.api.GeneralGenericDao Maven / Gradle / Ivy

Go to download

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.

The newest version!
/******************************************************************************
 * GeneralGenericDao.java - created by [email protected] on Mar 20, 2008
 * 
 * Copyright (c) 2006, 2007, 2008
 * 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.AllFinder;
import org.sakaiproject.genericdao.api.modifiers.BatchModifier;

/**
 * This is an extensible DAO interface which provides methods that are not
 * dependent on any underlying framework which should meet most needs
 * 
 * @author Aaron Zeckoski ([email protected])
 */
public interface GeneralGenericDao 
	extends BasicGenericDao, AllFinder, BatchModifier {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy