+ void handleCommand(Namespace ns, Signal signal, OutputWriter outputWriter) throws CommandException;
+
+ default void handleCommand(
+ final Namespace ns, final Manager m, final OutputWriter outputWriter
+ ) throws CommandException {
+ handleCommand(ns, new DbusSignalImpl(m, null), outputWriter);
+ }