Add removeContact command

Closes #335
This commit is contained in:
AsamK 2021-11-26 20:50:54 +01:00
parent 5cd5697aea
commit 7e7e4150e1
14 changed files with 167 additions and 7 deletions

View file

@ -381,6 +381,16 @@ public class DbusManagerImpl implements Manager {
return new SendMessageResults(0, Map.of());
}
@Override
public void deleteRecipient(final RecipientIdentifier.Single recipient) throws IOException {
throw new UnsupportedOperationException();
}
@Override
public void deleteContact(final RecipientIdentifier.Single recipient) throws IOException {
throw new UnsupportedOperationException();
}
@Override
public void setContactName(
final RecipientIdentifier.Single recipient, final String name