org.mozilla.jss.pkix.cmc

Class TaggedCertificationRequest

Implemented Interfaces:
ASN1Value

public class TaggedCertificationRequest
extends java.lang.Object
implements ASN1Value

CMC TaggedCertificationRequest:
   TaggedCertificationRequest ::= SEQUENCE { 
       bodyPartID            BodyPartID, 
       certificationRequest  CertificationRequest 
   } 
   bodyIdMax INTEGER ::= 4294967295

   BodyPartID ::= INTEGER(0..bodyIdMax)
 

Nested Class Summary

static class
TaggedCertificationRequest.Template
A template for decoding an TaggedCertificationRequest from its BER encoding.

Field Summary

static INTEGER
BODYIDMAX
static Tag
TAG

Constructor Summary

TaggedCertificationRequest(INTEGER bodyPartID, CertificationRequest certificationRequest)
Constructs a TaggedCertificationRequest from its components.

Method Summary

void
encode(OutputStream ostream)
Write this value's DER encoding to an output stream using its own base tag.
void
encode(Tag implicitTag, OutputStream ostream)
Write this value's DER encoding to an output stream using an implicit tag.
INTEGER
getBodyPartID()
CertificationRequest
getCertificationRequest()
Tag
getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
static TaggedCertificationRequest.Template
getTemplate()

Field Details

BODYIDMAX

public static final INTEGER BODYIDMAX

TAG

public static final Tag TAG

Constructor Details

TaggedCertificationRequest

public TaggedCertificationRequest(INTEGER bodyPartID,
                                  CertificationRequest certificationRequest)
Constructs a TaggedCertificationRequest from its components.
Parameters:
bodyPartID - the identifier.
certificationRequest - the pkcs10 request.

Method Details

encode

public void encode(OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using its own base tag.
Specified by:
encode in interface ASN1Value

encode

public void encode(Tag implicitTag,
                   OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using an implicit tag.
Specified by:
encode in interface ASN1Value

getBodyPartID

public INTEGER getBodyPartID()

getCertificationRequest

public CertificationRequest getCertificationRequest()

getTag

public Tag getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
Specified by:
getTag in interface ASN1Value

getTemplate

public static TaggedCertificationRequest.Template getTemplate()