Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }