You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModelController.java 768B

123456789101112131415161718192021222324252627
  1. package controller;
  2. import com.github.cliftonlabs.json_simple.JsonObject;
  3. public abstract class ModelController {
  4. public JsonObject getAllEntries(JsonObject iBody) throws Exception{
  5. throw new Exception("Not implemented");
  6. }
  7. public JsonObject getEntriesForId(String iId, JsonObject iBody) throws Exception{
  8. throw new Exception("Not implemented");
  9. }
  10. public JsonObject createEntry(JsonObject iBody) throws Exception{
  11. throw new Exception("Not implemented");
  12. }
  13. public JsonObject updateEntry(String iID, JsonObject iBody) throws Exception{
  14. throw new Exception("Not implemented");
  15. }
  16. public JsonObject deleteEntry(String iId) throws Exception{
  17. throw new Exception("Not implemented");
  18. }
  19. }