Methods Summary |
---|
public static org.bouncycastle.asn1.x509.DistributionPointName | getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj, boolean explicit)
return getInstance(ASN1TaggedObject.getInstance(obj, true));
|
public static org.bouncycastle.asn1.x509.DistributionPointName | getInstance(java.lang.Object obj)
if (obj == null || obj instanceof DistributionPointName)
{
return (DistributionPointName)obj;
}
else if (obj instanceof ASN1TaggedObject)
{
return new DistributionPointName((ASN1TaggedObject)obj);
}
throw new IllegalArgumentException("unknown object in factory");
|
public org.bouncycastle.asn1.ASN1Encodable | getName()Return the tagged object inside the distribution point name.
return (ASN1Encodable)name;
|
public int | getType()Return the tag number applying to the underlying choice.
return this.type;
|
public org.bouncycastle.asn1.DERObject | toASN1Object()
return new DERTaggedObject(false, type, name);
|