Skip to content

Commit 8823b0b

Browse files
committed
added missing get() methods (relates to github #1274)
1 parent 77b8334 commit 8823b0b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

util/src/main/java/org/bouncycastle/asn1/cmc/TaggedCertificationRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ public static TaggedCertificationRequest getInstance(
5959
return getInstance(ASN1Sequence.getInstance(obj, explicit));
6060
}
6161

62+
public BodyPartID getBodyPartID()
63+
{
64+
return bodyPartID;
65+
}
66+
67+
public CertificationRequest getCertificationRequest()
68+
{
69+
return certificationRequest;
70+
}
71+
6272
public ASN1Primitive toASN1Primitive()
6373
{
6474
ASN1EncodableVector v = new ASN1EncodableVector(2);

0 commit comments

Comments
 (0)