/** * @author Samuel Wolff * noch nicht getestet * * TODO Json hinzufügen */ package RestAPISchnittstelle; public interface IRestAPI { // region Get String get(String controllerName); String get (String controllerName, int id); String get (String controllerName, int id, boolean bezahlt); //endregion // region put void put (String controllerName, int id, String jsonData); // endregion // region POST void post (String controllerName, String jsonData); // endregion // region DELETE void delete(String controllerName, int id); // endregion }