be.cardon.asn1.x509
Class DistributionPointName

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by be.cardon.asn1.x509.DistributionPointName
All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Choice, org.bouncycastle.asn1.DEREncodable

public class DistributionPointName
extends org.bouncycastle.asn1.ASN1Encodable
implements org.bouncycastle.asn1.ASN1Choice

The DistributionPointName object.

 DistributionPointName ::= CHOICE {
     fullName                 [0] GeneralNames,
     nameRelativeToCRLIssuer  [1] RelativeDistinguishedName
 }
 


Field Summary
static int FULL_NAME
           
static int NAME_RELATIVE_TO_CRL_ISSUER
           
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
DistributionPointName(org.bouncycastle.asn1.ASN1TaggedObject obj)
           
DistributionPointName(GeneralNames fullName)
          Creates an new instance of fullName type.
DistributionPointName(int type, org.bouncycastle.asn1.ASN1Encodable name)
          General contructor.
DistributionPointName(int type, org.bouncycastle.asn1.DEREncodable name)
           
DistributionPointName(RelativeDistinguishedName nameRelativeToCRLIssuer)
          Creates an new instance of nameRelativeToCRLIssuer type.
 
Method Summary
 GeneralNames getFullName()
          Return the fullName, or null if wrong type.
static DistributionPointName getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj, boolean explicit)
           
static DistributionPointName getInstance(java.lang.Object obj)
           
 org.bouncycastle.asn1.ASN1Encodable getName()
          Returns the tagged object inside the distribution point name.
 RelativeDistinguishedName getNameRelativeToCRLIssuer()
          Return the nameRelativeToCRLIssuer, or null if wrong type.
 int getType()
          Returns the tag number applying to the underlying choice.
 org.bouncycastle.asn1.DERObject toASN1Object()
           
 
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FULL_NAME

public static final int FULL_NAME
See Also:
Constant Field Values

NAME_RELATIVE_TO_CRL_ISSUER

public static final int NAME_RELATIVE_TO_CRL_ISSUER
See Also:
Constant Field Values
Constructor Detail

DistributionPointName

public DistributionPointName(int type,
                             org.bouncycastle.asn1.DEREncodable name)

DistributionPointName

public DistributionPointName(int type,
                             org.bouncycastle.asn1.ASN1Encodable name)
General contructor.


DistributionPointName

public DistributionPointName(RelativeDistinguishedName nameRelativeToCRLIssuer)
Creates an new instance of nameRelativeToCRLIssuer type.


DistributionPointName

public DistributionPointName(GeneralNames fullName)
Creates an new instance of fullName type.


DistributionPointName

public DistributionPointName(org.bouncycastle.asn1.ASN1TaggedObject obj)
Method Detail

getInstance

public static DistributionPointName getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj,
                                                boolean explicit)

getInstance

public static DistributionPointName getInstance(java.lang.Object obj)

getType

public int getType()
Returns the tag number applying to the underlying choice.

Returns:
the tag number for this point name.

getName

public org.bouncycastle.asn1.ASN1Encodable getName()
Returns the tagged object inside the distribution point name.

Returns:
the underlying choice item.

getFullName

public GeneralNames getFullName()
Return the fullName, or null if wrong type.


getNameRelativeToCRLIssuer

public RelativeDistinguishedName getNameRelativeToCRLIssuer()
Return the nameRelativeToCRLIssuer, or null if wrong type.


toASN1Object

public org.bouncycastle.asn1.DERObject toASN1Object()
Specified by:
toASN1Object in class org.bouncycastle.asn1.ASN1Encodable