Interface UserManagerClient
-
- All Superinterfaces:
ManagerClient
- All Known Implementing Classes:
DefaultUserManager
public interface UserManagerClient extends ManagerClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateUser(String userId)booleanexists(String user)List<String>getUsers()voidremoveUser(String userId)-
Methods inherited from interface org.gcube.common.storagehub.client.proxies.ManagerClient
impersonate, register
-
-
-
-
Method Detail
-
createUser
void createUser(String userId) throws org.gcube.common.storagehub.model.exceptions.StorageHubException
- Throws:
org.gcube.common.storagehub.model.exceptions.StorageHubException
-
removeUser
void removeUser(String userId) throws org.gcube.common.storagehub.model.exceptions.StorageHubException
- Throws:
org.gcube.common.storagehub.model.exceptions.StorageHubException
-
getUsers
List<String> getUsers() throws org.gcube.common.storagehub.model.exceptions.StorageHubException
- Throws:
org.gcube.common.storagehub.model.exceptions.StorageHubException
-
exists
boolean exists(String user) throws org.gcube.common.storagehub.model.exceptions.StorageHubException
- Throws:
org.gcube.common.storagehub.model.exceptions.StorageHubException
-
-