01: package org.bouncycastle.asn1.x509;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04:
05: /**
06: * CertPolicyId, used in the CertificatePolicies and PolicyMappings
07: * X509V3 Extensions.
08: *
09: * <pre>
10: * CertPolicyId ::= OBJECT IDENTIFIER
11: * </pre>
12: */
13: public class CertPolicyId extends DERObjectIdentifier {
14: public CertPolicyId(String id) {
15: super(id);
16: }
17: }
|