Project

General

Profile

1
package eu.dnetlib.validator.commons.dao;
2

    
3
public interface DAO<T> {
4

    
5
	public Integer save (T t) throws DaoException;
6
//	public String delete (T t);
7
	public String delete (int id) throws DaoException;
8
	public T get (int id) throws DaoException;
9
}
(2-2/4)