chris@0: /* chris@0: * StarOffice News Server chris@0: * see AUTHORS for the list of contributors chris@0: * chris@0: * This program is free software: you can redistribute it and/or modify chris@0: * it under the terms of the GNU General Public License as published by chris@0: * the Free Software Foundation, either version 3 of the License, or chris@0: * (at your option) any later version. chris@0: * chris@0: * This program is distributed in the hope that it will be useful, chris@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of chris@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the chris@0: * GNU General Public License for more details. chris@0: * chris@0: * You should have received a copy of the GNU General Public License chris@0: * along with this program. If not, see . chris@0: */ chris@0: chris@0: package com.so.news.command; chris@0: chris@0: import com.so.news.NNTPConnection; chris@0: chris@0: /** chris@0: * The CAPABILITIES command allows a client to determine the chris@0: capabilities of the server at any given time. chris@0: chris@0: This command MAY be issued at any time; the server MUST NOT require chris@0: it to be issued in order to make use of any capability. The response chris@0: generated by this command MAY change during a session because of chris@0: other state information (which, in turn, may be changed by the chris@0: effects of other commands or by external events). An NNTP client is chris@0: only able to get the current and correct information concerning chris@0: available capabilities at any point during a session by issuing a chris@0: CAPABILITIES command at that point of that session and processing the chris@0: response. chris@0: * @author chris chris@0: */ chris@0: public class CapabilitiesCommand extends Command chris@0: { chris@0: public CapabilitiesCommand(NNTPConnection connection) chris@0: { chris@0: super(connection); chris@0: } chris@0: chris@0: public boolean process(String[] command) chris@0: throws Exception chris@0: { chris@0: return false; chris@0: } chris@0: }