Implement unregister command for jsonrpc and dbus daemon

This commit is contained in:
AsamK 2021-11-12 16:07:35 +01:00
parent b78573021d
commit c73c58723c
11 changed files with 98 additions and 9 deletions

View file

@ -138,6 +138,24 @@ public class DbusSignalImpl implements Signal {
}
@Override
public void unregister() throws Error.Failure {
try {
m.unregister();
} catch (IOException e) {
throw new Error.Failure("Failed to unregister: " + e.getMessage());
}
}
@Override
public void deleteAccount() throws Error.Failure {
try {
m.deleteAccount();
} catch (IOException e) {
throw new Error.Failure("Failed to delete account: " + e.getMessage());
}
}
@Override
public void addDevice(String uri) {
try {