public TransferDto sendCommand()

in src/main/java/org/openvasp/host/rest/TransferController.java [104:110]


    public TransferDto sendCommand(
            @PathVariable @Positive final Integer id,
            @PathVariable final TransferCommand command) {

        log.debug("command {}", command);
        return facade.doCommand(id, command);
    }