aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java')
-rw-r--r--src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java b/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java
deleted file mode 100644
index 539a8e5..0000000
--- a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/dao/EmployeeDAO.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.dao;
-
-import at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.dto.Employee;
-import at.ac.tuwien.sepm.assignment.groupphase.exception.ElementNotFoundException;
-import at.ac.tuwien.sepm.assignment.groupphase.exception.PersistenceException;
-import java.util.Set;
-
-public interface EmployeeDAO {
-
- /**
- * Persist the given employee.
- *
- * @param employee that should be stored
- * @return the id that was assigned
- * @throws PersistenceException if the employee could not be persisted
- */
- long add(Employee employee) throws PersistenceException;
-
- /**
- * Update the given employee.
- *
- * @param employee that should be updated
- * @throws ElementNotFoundException if no employee with the given id exists
- * @throws PersistenceException if the employee could not be updated
- */
- void update(Employee employee) throws ElementNotFoundException, PersistenceException;
-
- /**
- * Get all stored employees.
- *
- * @return list containing all stored employees
- * @throws PersistenceException if loading the stored employees failed
- */
- Set<Employee> list() throws PersistenceException;
-
- /**
- * Remove employee with the given id from the store.
- *
- * @param id of the employee that should be removed
- * @throws ElementNotFoundException if no employee with the given id exists
- * @throws PersistenceException if the employee could not be removed
- */
- void remove(long id) throws ElementNotFoundException, PersistenceException;
-}