01: package org.bouncycastle.ocsp;
02:
03: public interface OCSPRespStatus {
04: /**
05: * note 4 is not used.
06: */
07: public static final int SUCCESSFUL = 0; // --Response has valid confirmations
08: public static final int MALFORMED_REQUEST = 1; // --Illegal confirmation request
09: public static final int INTERNAL_ERROR = 2; // --Internal error in issuer
10: public static final int TRY_LATER = 3; // --Try again later
11: public static final int SIGREQUIRED = 5; // --Must sign the request
12: public static final int UNAUTHORIZED = 6; // --Request unauthorized
13: }
|