This repository has been archived by the owner on Mar 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.2.0 - Support for patch and put
- Loading branch information
1 parent
58a8d73
commit cc7e484
Showing
4 changed files
with
42 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ plugins { | |
} | ||
|
||
group 'com.bradcypert' | ||
version '1.1.2' | ||
version '1.2.0' | ||
|
||
sourceCompatibility = 1.8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
package com.bradcypert.ginger; | ||
|
||
public interface Model { | ||
default String save(PropertyMap map) { return "{\"Save is set up\": false}"; }; | ||
default String fetch(String id) { return "{\"Fetch is set up\": false}"; }; | ||
default String fetchAll() { return "{\"FetchAll is set up\": false}"; }; | ||
default String remove(String id) { return "{\"Remove is set up\": false}"; }; | ||
default String save(PropertyMap map) { return "{\"Save is set up\": false}"; } | ||
default String fetch(String id) { return "{\"Fetch is set up\": false}"; } | ||
default String fetchAll() { return "{\"FetchAll is set up\": false}"; } | ||
default String remove(String id) { return "{\"Remove is set up\": false}"; } | ||
default String update(String id, PropertyMap map) { return "{\"Remove is set up\": false}"; } | ||
default String replace(String id, PropertyMap map) { return "{\"Remove is set up\": false}"; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters