Package org.bouncycastle.asn1.ocsp
Class OCSPResponse
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.ocsp.OCSPResponse
-
- All Implemented Interfaces:
ASN1Encodable,Encodable
public class OCSPResponse extends ASN1Object
OCSP RFC 2560, RFC 6960OCSPResponse ::= SEQUENCE { responseStatus OCSPResponseStatus, responseBytes [0] EXPLICIT ResponseBytes OPTIONAL }- See Also:
OCSPResponseStatus,ResponseBytes
-
-
Constructor Summary
Constructors Constructor Description OCSPResponse(OCSPResponseStatus responseStatus, ResponseBytes responseBytes)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OCSPResponsegetInstance(java.lang.Object obj)static OCSPResponsegetInstance(ASN1TaggedObject obj, boolean explicit)ResponseBytesgetResponseBytes()OCSPResponseStatusgetResponseStatus()ASN1PrimitivetoASN1Primitive()Produce an object suitable for an ASN1OutputStream.-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
-
-
-
Constructor Detail
-
OCSPResponse
public OCSPResponse(OCSPResponseStatus responseStatus, ResponseBytes responseBytes)
-
-
Method Detail
-
getInstance
public static OCSPResponse getInstance(ASN1TaggedObject obj, boolean explicit)
-
getInstance
public static OCSPResponse getInstance(java.lang.Object obj)
-
getResponseStatus
public OCSPResponseStatus getResponseStatus()
-
getResponseBytes
public ResponseBytes getResponseBytes()
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.OCSPResponse ::= SEQUENCE { responseStatus OCSPResponseStatus, responseBytes [0] EXPLICIT ResponseBytes OPTIONAL }- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object- Returns:
- a primitive representation of this object.
-
-