545546547548549550551552
static boolean Register(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.register(args); return format_reply(UiOption.Register, reply); }
553554555556557558559560
static boolean Unregister(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.unregister(args); return format_reply(UiOption.Unregister, reply); }
561562563564565566567568
static boolean Start(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.start(args); return format_reply(UiOption.Start, reply); }
569570571572573574575576
static boolean Stop(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.stop(args); return format_reply(UiOption.Stop, reply); }
577578579580581582583584
static boolean Modify(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.modify(args); return format_reply(UiOption.Modify, reply); }
585586587588589590591592
static boolean Query(String[] args) throws Exception { DuccServiceApi api = new DuccServiceApi(null); IServiceReply reply = api.query(args); return format_reply(UiOption.Query, reply); }