be.cardon.asn1.x509
Class RDNSequence

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

public class RDNSequence
extends org.bouncycastle.asn1.ASN1Encodable

ASN.1 object RDNSequence.

Documentation from RFC 3280:

 Name ::= CHOICE {
     RDNSequence }

   RDNSequence ::= SEQUENCE OF RelativeDistinguishedName


Field Summary
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
RDNSequence(org.bouncycastle.asn1.ASN1Sequence seq)
          Decodes an existing RDNSequence ASN.1 object.
RDNSequence(java.lang.String name)
          Creates an new instance from a given string in format RFC 2253 or 1779}.
RDNSequence(java.util.Vector<RelativeDistinguishedName> rdns)
          Creates an new instance from a given vector of RelativeDistinguishedName.
 
Method Summary
static RDNSequence getInstance(java.lang.Object obj)
          Creates an new object from an existing ASN1Sequence or RDNSequence object.
 java.util.Vector<RelativeDistinguishedName> getRelativeDistinguishedNames()
          Returns the vector of RelativeDistinguishedName.
 java.lang.String getRFC2253Name()
           
 java.lang.String getRFC2253Name(java.util.Map<org.bouncycastle.asn1.DERObjectIdentifier,java.lang.String> typeMap)
          Returns the string representation as defined in RFC 2253.
static RDNSequence newInstance(java.lang.String name)
          Creates an new instance from the given string.
 org.bouncycastle.asn1.DERObject toASN1Object()
          
 java.lang.String toString()
           
 
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, wait, wait, wait
 

Constructor Detail

RDNSequence

public RDNSequence(org.bouncycastle.asn1.ASN1Sequence seq)
Decodes an existing RDNSequence ASN.1 object.

Parameters:
seq - ASN.1 Sequence being the {code RDNSequence}.

RDNSequence

public RDNSequence(java.util.Vector<RelativeDistinguishedName> rdns)
Creates an new instance from a given vector of RelativeDistinguishedName.


RDNSequence

public RDNSequence(java.lang.String name)
Creates an new instance from a given string in format RFC 2253 or 1779}.

THIS FUNCTION USE THE Sun X500Principal, with limited support for type string representation

In the future : own implementation.

Method Detail

getInstance

public static RDNSequence getInstance(java.lang.Object obj)
Creates an new object from an existing ASN1Sequence or RDNSequence object.

Throws:
java.lang.IllegalArgumentException - if the object is invalid.

getRelativeDistinguishedNames

public java.util.Vector<RelativeDistinguishedName> getRelativeDistinguishedNames()
Returns the vector of RelativeDistinguishedName.


toASN1Object

public org.bouncycastle.asn1.DERObject toASN1Object()

Specified by:
toASN1Object in class org.bouncycastle.asn1.ASN1Encodable

getRFC2253Name

public java.lang.String getRFC2253Name(java.util.Map<org.bouncycastle.asn1.DERObjectIdentifier,java.lang.String> typeMap)
Returns the string representation as defined in RFC 2253.

See RFC 2253.

If the RDNSequence is an empty sequence, the result is the empty or zero length string (not null).


getRFC2253Name

public java.lang.String getRFC2253Name()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

newInstance

public static RDNSequence newInstance(java.lang.String name)
Creates an new instance from the given string.

The string must be in the format of RFC 2253 or RFC 1779.