cli@26: /* cli@26: * SONEWS News Server cli@26: * see AUTHORS for the list of contributors cli@26: * cli@26: * This program is free software: you can redistribute it and/or modify cli@26: * it under the terms of the GNU General Public License as published by cli@26: * the Free Software Foundation, either version 3 of the License, or cli@26: * (at your option) any later version. cli@26: * cli@26: * This program is distributed in the hope that it will be useful, cli@26: * but WITHOUT ANY WARRANTY; without even the implied warranty of cli@26: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the cli@26: * GNU General Public License for more details. cli@26: * cli@26: * You should have received a copy of the GNU General Public License cli@26: * along with this program. If not, see . cli@26: */ cli@26: cli@26: package org.sonews.daemon.command; cli@26: cli@26: /** cli@26: * cli@26: * @since sonews/1.1 cli@26: * @author Christian Lins cli@26: */ cli@26: public interface HelpfulCommand extends Command cli@26: { cli@26: cli@37: /** cli@37: * @return A short description of this command, that is cli@37: * used within the output of the HELP command. cli@37: */ cli@37: String getHelpString(); cli@26: }