Skip to content
Snippets Groups Projects
Commit d132e63e authored by Tom Käsler's avatar Tom Käsler
Browse files

Add skelet functions to StubDatabaseDao

parent 1cd4807b
Branches
Tags
No related merge requests found
......@@ -574,6 +574,18 @@ public class StubDatabaseDao implements IDatabaseDao {
stats.setInterposedQuestions(0);
return stats;
}
@Override
public List<String> getSubjects(Session session, String questionVariant) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<String> getQuestionIdsBySubject(Session session, String questionVariant, String subject) {
// TODO Auto-generated method stub
return null;
}
@Override
public SortOrder createOrUpdateSortOrder(SortOrder sortOrder) {
......@@ -586,4 +598,3 @@ public class StubDatabaseDao implements IDatabaseDao {
// TODO Auto-generated method stub
return null;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment