001    /*
002     * Copyright 2001-2005 The Apache Software Foundation
003     *
004     * Licensed under the Apache License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     *     http://www.apache.org/licenses/LICENSE-2.0
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.apache.commons.net.nntp;
017    
018    /***
019     * NNTPReply stores a set of constants for NNTP reply codes.  To interpret
020     * the meaning of the codes, familiarity with RFC 977 is assumed.
021     * The mnemonic constant names are transcriptions from the code descriptions
022     * of RFC 977.  For those who think in terms of the actual reply code values,
023     * a set of CODE_NUM constants are provided where NUM is the numerical value
024     * of the code.
025     * <p>
026     * <p>
027     * @author Daniel F. Savarese
028     ***/
029    
030    public final class NNTPReply
031    {
032    
033        public static final int CODE_100 = 100;
034        public static final int CODE_199 = 199;
035        public static final int CODE_200 = 200;
036        public static final int CODE_201 = 201;
037        public static final int CODE_202 = 202;
038        public static final int CODE_205 = 205;
039        public static final int CODE_211 = 211;
040        public static final int CODE_215 = 215;
041        public static final int CODE_220 = 220;
042        public static final int CODE_221 = 221;
043        public static final int CODE_222 = 222;
044        public static final int CODE_223 = 223;
045        public static final int CODE_230 = 230;
046        public static final int CODE_231 = 231;
047        public static final int CODE_235 = 235;
048        public static final int CODE_240 = 240;
049        public static final int CODE_281 = 281;
050        public static final int CODE_335 = 335;
051        public static final int CODE_340 = 340;
052        public static final int CODE_381 = 381;
053        public static final int CODE_400 = 400;
054        public static final int CODE_408 = 408;
055        public static final int CODE_411 = 411;
056        public static final int CODE_412 = 412;
057        public static final int CODE_420 = 420;
058        public static final int CODE_421 = 421;
059        public static final int CODE_422 = 422;
060        public static final int CODE_423 = 423;
061        public static final int CODE_430 = 430;
062        public static final int CODE_435 = 435;
063        public static final int CODE_436 = 436;
064        public static final int CODE_437 = 437;
065        public static final int CODE_440 = 440;
066        public static final int CODE_441 = 441;
067        public static final int CODE_482 = 482;
068        public static final int CODE_500 = 500;
069        public static final int CODE_501 = 501;
070        public static final int CODE_502 = 502;
071        public static final int CODE_503 = 503;
072    
073        public static final int HELP_TEXT_FOLLOWS                = CODE_100;
074        public static final int DEBUG_OUTPUT                     = CODE_199;
075        public static final int SERVER_READY_POSTING_ALLOWED     = CODE_200;
076        public static final int SERVER_READY_POSTING_NOT_ALLOWED = CODE_201;
077        public static final int SLAVE_STATUS_NOTED               = CODE_202;
078        public static final int CLOSING_CONNECTION               = CODE_205;
079        public static final int GROUP_SELECTED                   = CODE_211;
080        public static final int ARTICLE_RETRIEVED_HEAD_AND_BODY_FOLLOW = CODE_220;
081        public static final int ARTICLE_RETRIEVED_HEAD_FOLLOWS = CODE_221;
082        public static final int ARTICLE_RETRIEVED_BODY_FOLLOWS = CODE_222;
083        public static final int
084          ARTICLE_RETRIEVED_REQUEST_TEXT_SEPARATELY = CODE_223;
085        public static final int ARTICLE_LIST_BY_MESSAGE_ID_FOLLOWS = CODE_230;
086        public static final int NEW_NEWSGROUP_LIST_FOLLOWS         = CODE_231;
087        public static final int ARTICLE_TRANSFERRED_OK             = CODE_235;
088        public static final int ARTICLE_POSTED_OK                  = CODE_240;
089        public static final int AUTHENTICATION_ACCEPTED            = CODE_281;
090        public static final int SEND_ARTICLE_TO_TRANSFER           = CODE_335;
091        public static final int SEND_ARTICLE_TO_POST               = CODE_340;
092        public static final int MORE_AUTH_INFO_REQUIRED            = CODE_381;
093        public static final int SERVICE_DISCONTINUED               = CODE_400;
094        public static final int NO_SUCH_NEWSGROUP                  = CODE_411;
095        public static final int AUTHENTICATION_REQUIRED            = CODE_408;
096        public static final int NO_NEWSGROUP_SELECTED              = CODE_412;
097        public static final int NO_CURRENT_ARTICLE_SELECTED        = CODE_420;
098        public static final int NO_NEXT_ARTICLE                    = CODE_421;
099        public static final int NO_PREVIOUS_ARTICLE                = CODE_422;
100        public static final int NO_SUCH_ARTICLE_NUMBER             = CODE_423;
101        public static final int NO_SUCH_ARTICLE_FOUND              = CODE_430;
102        public static final int ARTICLE_NOT_WANTED                 = CODE_435;
103        public static final int TRANSFER_FAILED                    = CODE_436;
104        public static final int ARTICLE_REJECTED                   = CODE_437;
105        public static final int POSTING_NOT_ALLOWED                = CODE_440;
106        public static final int POSTING_FAILED                     = CODE_441;
107        public static final int AUTHENTICATION_REJECTED            = CODE_482;
108        public static final int COMMAND_NOT_RECOGNIZED             = CODE_500;
109        public static final int COMMAND_SYNTAX_ERROR               = CODE_501;
110        public static final int PERMISSION_DENIED                  = CODE_502;
111        public static final int PROGRAM_FAULT                      = CODE_503;
112    
113        // Cannot be instantiated
114    
115        private NNTPReply()
116        {}
117    
118        /***
119         * Determine if a reply code is an informational response.  All
120         * codes beginning with a 1 are positive informational responses.
121         * Informational responses are used to provide human readable
122         * information such as help text.
123         * <p>
124         * @param reply  The reply code to test.
125         * @return True if a reply code is an informational response, false
126         *         if not.
127         ***/
128        public static boolean isInformational(int reply)
129        {
130            return (reply >= 100 && reply < 200);
131        }
132    
133        /***
134         * Determine if a reply code is a positive completion response.  All
135         * codes beginning with a 2 are positive completion responses.
136         * The NNTP server will send a positive completion response on the final
137         * successful completion of a command.
138         * <p>
139         * @param reply  The reply code to test.
140         * @return True if a reply code is a postive completion response, false
141         *         if not.
142         ***/
143        public static boolean isPositiveCompletion(int reply)
144        {
145            return (reply >= 200 && reply < 300);
146        }
147    
148        /***
149         * Determine if a reply code is a positive intermediate response.  All
150         * codes beginning with a 3 are positive intermediate responses.
151         * The NNTP server will send a positive intermediate response on the
152         * successful completion of one part of a multi-part command or
153         * sequence of commands.  For example, after a successful POST command,
154         * a positive intermediate response will be sent to indicate that the
155         * server is ready to receive the article to be posted.
156         * <p>
157         * @param reply  The reply code to test.
158         * @return True if a reply code is a postive intermediate response, false
159         *         if not.
160         ***/
161        public static boolean isPositiveIntermediate(int reply)
162        {
163            return (reply >= 300 && reply < 400);
164        }
165    
166        /***
167         * Determine if a reply code is a negative transient response.  All
168         * codes beginning with a 4 are negative transient responses.
169         * The NNTP server will send a negative transient response on the
170         * failure of a correctly formatted command that could not be performed
171         * for some reason.  For example, retrieving an article that does not
172         * exist will result in a negative transient response.
173         * <p>
174         * @param reply  The reply code to test.
175         * @return True if a reply code is a negative transient response, false
176         *         if not.
177         ***/
178        public static boolean isNegativeTransient(int reply)
179        {
180            return (reply >= 400 && reply < 500);
181        }
182    
183        /***
184         * Determine if a reply code is a negative permanent response.  All
185         * codes beginning with a 5 are negative permanent responses.
186         * The NNTP server will send a negative permanent response when
187         * it does not implement a command, a command is incorrectly formatted,
188         * or a serious program error occurs.
189         * <p>
190         * @param reply  The reply code to test.
191         * @return True if a reply code is a negative permanent response, false
192         *         if not.
193         ***/
194        public static boolean isNegativePermanent(int reply)
195        {
196            return (reply >= 500 && reply < 600);
197        }
198    
199    }
200    
201    /* Emacs configuration
202     * Local variables:        **
203     * mode:             java  **
204     * c-basic-offset:   4     **
205     * indent-tabs-mode: nil   **
206     * End:                    **
207     */