package org.gcube.gcat.api.interfaces; import javax.xml.ws.WebServiceException; /** * @author Luca Frosini (ISTI - CNR) */ public interface Group extends CRUD { public static final String GROUPS = "groups"; public int count() throws WebServiceException; public String list(int limit, int offset) throws WebServiceException; public String patch(String name, String json) throws WebServiceException; public D delete(String name, boolean purge) throws WebServiceException; public D purge(String name) throws WebServiceException; }