package controller; import com.github.cliftonlabs.json_simple.JsonObject; public abstract class ModelController { public JsonObject getAllEntries(JsonObject iBody) throws Exception{ throw new Exception("Not implemented"); } public JsonObject getEntriesForId(String iId, JsonObject iBody) throws Exception{ throw new Exception("Not implemented"); } public JsonObject createEntry(JsonObject iBody) throws Exception{ throw new Exception("Not implemented"); } public JsonObject updateEntry(String iID, JsonObject iBody) throws Exception{ throw new Exception("Not implemented"); } public JsonObject deleteEntry(String iId) throws Exception{ throw new Exception("Not implemented"); } }