public boolean removeUserProfileTask(String userId, Number160 contentKey, KeyPair protectionKey) {
IParameters parameters = new Parameters().setLocationKey(userId)
.setDomainKey(H2HConstants.USER_PROFILE_TASK_DOMAIN).setContentKey(contentKey)
.setProtectionKeys(protectionKey);
FutureRemove futureRemove = removeUnblocked(parameters);
FutureRemoveListener listener = new FutureRemoveListener(parameters, true, this);
futureRemove.addListener(listener);
return listener.await();
}