fixed interface

This commit is contained in:
Luca Frosini 2022-02-21 13:17:02 +01:00
parent 0cc5173a1f
commit 66b5f47807
1 changed files with 4 additions and 4 deletions

View File

@ -13,11 +13,11 @@ public interface Configuration<C,D> {
public C create(String json) throws WebServiceException;
public String read() throws WebServiceException ;
public C read() throws WebServiceException ;
public C update(String json) throws WebServiceException;
public String update(String json) throws WebServiceException;
public String patch(String json) throws WebServiceException;
public C patch(String json) throws WebServiceException;
public D delete() throws WebServiceException;