View Javadoc

1   package org.astrogrid.store.delegate.myspaceItn05;
2   
3   /***
4    * <p>
5    * The <code>StatusCodes</code> class defines the values for the codes
6    * used in the <code>StatusMessage</code> and <code>StatusResults</code>
7    * classes.  In practice the variables correspond to the various values
8    * for the severity level.
9    * </p>
10   * 
11   * @author A C Davenhall (Edinburgh)
12   * @since Iteration 5.
13   * @version Iteration 5.
14   */
15  
16  public class StatusCodes
17  {
18  
19  //
20  //Public constants defining the permitted codes for the severity level.
21  
22     public static final int INFO  = 1;  // Information (ie. nothing amiss).
23     public static final int WARN  = 2;  // Warning.
24     public static final int ERROR = 3;  // Error.
25  }