public void deleteUserClient(String userId, String serviceName) throws NoSuchStoreException {
if(this.userClientStore.containsKey(userId)) {
this.userClientStore.get(userId).remove(serviceName);
} else {
throw new NoSuchStoreException("Couldn't find the given userId in userStore:" + userId);
}
}