Add command to delete local account data

Fixes #912
This commit is contained in:
AsamK 2022-05-16 12:20:23 +02:00
parent 55dde93811
commit 22add1cbee
13 changed files with 170 additions and 9 deletions

View file

@ -47,6 +47,16 @@ public class DbusRegistrationManagerImpl implements RegistrationManager {
}
}
@Override
public void deleteLocalAccountData() throws IOException {
throw new UnsupportedOperationException();
}
@Override
public boolean isRegistered() {
throw new UnsupportedOperationException();
}
@Override
public void close() {
}