Add dbus SignalControl interface to register/verify/link accounts

This commit is contained in:
AsamK 2021-04-03 19:13:12 +02:00
parent 48b2c7ff8a
commit 8f781c019f
9 changed files with 272 additions and 22 deletions

View file

@ -12,6 +12,6 @@ public interface DbusCommand extends LocalCommand {
void handleCommand(Namespace ns, Signal signal) throws CommandException;
default void handleCommand(final Namespace ns, final Manager m) throws CommandException {
handleCommand(ns, new DbusSignalImpl(m));
handleCommand(ns, new DbusSignalImpl(m, null));
}
}