/[classpath]/classpath/org/ietf/jgss/GSSException.java
ViewVC logotype

Diff of /classpath/org/ietf/jgss/GSSException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by tromey, Mon Sep 12 18:59:03 2005 UTC revision 1.6 by mark, Sat Sep 17 22:34:44 2005 UTC
# Line 95  public class GSSException extends Except Line 95  public class GSSException extends Except
95    
96    /**    /**
97     * Channel bindings mismatch error.     * Channel bindings mismatch error.
98       * @specnote Should be 4 according to RFC 2853.
99     */     */
100    public static final int BAD_BINDINGS = 1;    public static final int BAD_BINDINGS = 1;
101    
102    /**    /**
103     * Unsupported mechanism requested error.     * Unsupported mechanism requested error.
104       * @specnote Should be 1 according to RFC 2853.
105     */     */
106    public static final int BAD_MECH = 2;    public static final int BAD_MECH = 2;
107    
108    /**    /**
109     * Invalid name provided error.     * Invalid name provided error.
110       * @specnote Should be 2 according to RFC 2853.
111     */     */
112    public static final int BAD_NAME = 3;    public static final int BAD_NAME = 3;
113    
114    /**    /**
115     * Name of unsupported type provided error.     * Name of unsupported type provided error.
116       * @specnote Should be 3 according to RFC 2853.
117     */     */
118    public static final int BAD_NAMETYPE = 4;    public static final int BAD_NAMETYPE = 4;
119    
# Line 125  public class GSSException extends Except Line 129  public class GSSException extends Except
129    
130    /**    /**
131     * Specified security context expired error.     * Specified security context expired error.
132       * @specnote Should be 12 according to RFC 2853.
133     */     */
134    public static final int CONTEXT_EXPIRED = 7;    public static final int CONTEXT_EXPIRED = 7;
135    
136    /**    /**
137     * Expired credentials detected error.     * Expired credentials detected error.
138       * @specnote Should be 11 according to RFC 2853.
139     */     */
140    public static final int CREDENTIALS_EXPIRED = 8;    public static final int CREDENTIALS_EXPIRED = 8;
141    
142    /**    /**
143     * Defective credential error.     * Defective credential error.
144       * @specnote Should be 10 according to RFC 2853.
145     */     */
146    public static final int DEFECTIVE_CREDENTIAL = 9;    public static final int DEFECTIVE_CREDENTIAL = 9;
147    
148    /**    /**
149     * Defective token error.     * Defective token error.
150       * @specnote Should be 9 according to RFC 2853.
151     */     */
152    public static final int DEFECTIVE_TOKEN = 10;    public static final int DEFECTIVE_TOKEN = 10;
153    
154    /**    /**
155     * General failure, unspecified at GSS-API level.     * General failure, unspecified at GSS-API level.
156       * @specnote Should be 13 according to RFC 2853.
157     */     */
158    public static final int FAILURE = 11;    public static final int FAILURE = 11;
159    
160    /**    /**
161     * Invalid security context error.     * Invalid security context error.
162       * @specnote Should be 8 according to RFC 2853.
163     */     */
164    public static final int NO_CONTEXT = 12;    public static final int NO_CONTEXT = 12;
165    
166    /**    /**
167     * Invalid credentials error.     * Invalid credentials error.
168       * @specnote Should be 7 according to RFC 2853.
169     */     */
170    public static final int NO_CRED = 13;    public static final int NO_CRED = 13;
171    
# Line 188  public class GSSException extends Except Line 199  public class GSSException extends Except
199     * code that may occur during context establishment.  It is not used to     * code that may occur during context establishment.  It is not used to
200     * indicate supplementary status values.  The MessageProp object is used     * indicate supplementary status values.  The MessageProp object is used
201     * for that purpose.     * for that purpose.
202       * @specnote Should be 20 according to RFC 2853.
203     */     */
204    public static final int DUPLICATE_TOKEN = 19;    public static final int DUPLICATE_TOKEN = 19;
205    
# Line 196  public class GSSException extends Except Line 208  public class GSSException extends Except
208     * that may occur during context establishment.  It is not used to     * that may occur during context establishment.  It is not used to
209     * indicate supplementary status values.  The MessageProp object is used     * indicate supplementary status values.  The MessageProp object is used
210     * for that purpose.     * for that purpose.
211       * @specnote Should be 19 according to RFC 2853.
212     */     */
213    public static final int OLD_TOKEN = 20;    public static final int OLD_TOKEN = 20;
214    

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26