package org.gcube.common.storagehub.client.proxies; import java.util.List; import org.gcube.common.storagehub.model.exceptions.StorageHubException; public interface UserManagerClient { void addUser(String userId) throws StorageHubException; void removeUser(String userId) throws StorageHubException; List getUsers() throws StorageHubException; }