src/main/java/de/uapcore/lightpit/dao/GenericDao.java

changeset 62
833e0385572a
parent 47
57cfb94ab99f
child 75
33b6843fdf8a
     1.1 --- a/src/main/java/de/uapcore/lightpit/dao/GenericDao.java	Sun May 17 16:38:04 2020 +0200
     1.2 +++ b/src/main/java/de/uapcore/lightpit/dao/GenericDao.java	Mon May 18 21:05:57 2020 +0200
     1.3 @@ -29,16 +29,8 @@
     1.4  package de.uapcore.lightpit.dao;
     1.5  
     1.6  import java.sql.SQLException;
     1.7 -import java.util.List;
     1.8  
     1.9  public interface GenericDao<T> {
    1.10 -    /**
    1.11 -     * Returns a list of all entities.
    1.12 -     *
    1.13 -     * @return a list of all objects
    1.14 -     * @throws SQLException on any kind of SQL errors
    1.15 -     */
    1.16 -    List<T> list() throws SQLException;
    1.17  
    1.18      /**
    1.19       * Finds an entity by its integer ID.

mercurial