Interface BasicDAO<E>


public interface BasicDAO<E>
Common operations for any data access object (DAO).
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(E e)
     
     
    void
    update(E e)
     
  • Method Details

    • add

      void add(E e)
    • getAll

      List<E> getAll()
    • update

      void update(E e)