Added NotImplementedException, edited some DatabaseGoodCasesTest tests.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
package hhn.temp.project.provider;
|
||||
|
||||
import jdk.jshell.spi.ExecutionControl;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public interface DatabaseManager<E> extends Database {
|
||||
public void saveObjects(Collection<E> objects);
|
||||
public Collection<E> getObjects();
|
||||
public void saveObject(E object);
|
||||
public E getObject(int id);
|
||||
public Collection<E> getObjects() throws ExecutionControl.NotImplementedException;
|
||||
public void saveObject(E object) throws ExecutionControl.NotImplementedException;
|
||||
public E getObject(int id) throws ExecutionControl.NotImplementedException;
|
||||
}
|
||||
Reference in New Issue
Block a user