Package org.bouncycastle.asn1.cmp
Class PKIStatus
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.cmp.PKIStatus
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class PKIStatus extends org.bouncycastle.asn1.ASN1Object
PKIStatus ::= INTEGER { accepted (0), -- you got exactly what you asked for grantedWithMods (1), -- you got something like what you asked for; the -- requester is responsible for ascertaining the differences rejection (2), -- you don't get it, more information elsewhere in the message waiting (3), -- the request body part has not yet been processed; expect to -- hear more later (note: proper handling of this status -- response MAY use the polling req/rep PKIMessages specified -- in Section 5.3.22; alternatively, polling in the underlying -- transport layer MAY have some utility in this regard) revocationWarning (4), -- this message contains a warning that a revocation is -- imminent revocationNotification (5), -- notification that a revocation has occurred keyUpdateWarning (6) -- update already done for the oldCertId specified in -- CertReqMsg }
-
-
Field Summary
Fields Modifier and Type Field Description static PKIStatus
granted
static int
GRANTED
static int
GRANTED_WITH_MODS
static PKIStatus
grantedWithMods
static int
KEY_UPDATE_WARNING
static PKIStatus
keyUpdateWaiting
static PKIStatus
rejection
static int
REJECTION
static int
REVOCATION_NOTIFICATION
static int
REVOCATION_WARNING
static PKIStatus
revocationNotification
static PKIStatus
revocationWarning
static PKIStatus
waiting
static int
WAITING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PKIStatus
getInstance(java.lang.Object o)
java.math.BigInteger
getValue()
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
-
-
-
Field Detail
-
GRANTED
public static final int GRANTED
- See Also:
- Constant Field Values
-
GRANTED_WITH_MODS
public static final int GRANTED_WITH_MODS
- See Also:
- Constant Field Values
-
REJECTION
public static final int REJECTION
- See Also:
- Constant Field Values
-
WAITING
public static final int WAITING
- See Also:
- Constant Field Values
-
REVOCATION_WARNING
public static final int REVOCATION_WARNING
- See Also:
- Constant Field Values
-
REVOCATION_NOTIFICATION
public static final int REVOCATION_NOTIFICATION
- See Also:
- Constant Field Values
-
KEY_UPDATE_WARNING
public static final int KEY_UPDATE_WARNING
- See Also:
- Constant Field Values
-
granted
public static final PKIStatus granted
-
grantedWithMods
public static final PKIStatus grantedWithMods
-
rejection
public static final PKIStatus rejection
-
waiting
public static final PKIStatus waiting
-
revocationWarning
public static final PKIStatus revocationWarning
-
revocationNotification
public static final PKIStatus revocationNotification
-
keyUpdateWaiting
public static final PKIStatus keyUpdateWaiting
-
-
Method Detail
-
getInstance
public static PKIStatus getInstance(java.lang.Object o)
-
getValue
public java.math.BigInteger getValue()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
-
-