Class RDN

  • All Implemented Interfaces:
    DEREncoder

    @Deprecated
    public class RDN
    extends java.lang.Object
    implements DEREncoder
    Deprecated.
    Use RDn
    A set of attribute value assertions.
    Author:
    Middleware Services
    • Constructor Detail

      • RDN

        public RDN​(java.util.Collection<AttributeValueAssertion> assertions)
        Deprecated.
        Creates a new RDN.
        Parameters:
        assertions - in this RDN
      • RDN

        public RDN​(AttributeValueAssertion... assertions)
        Deprecated.
        Creates a new RDN.
        Parameters:
        assertions - in this RDN
    • Method Detail

      • getAttributeValueAssertions

        public AttributeValueAssertion[] getAttributeValueAssertions()
        Deprecated.
        Returns the attribute value assertions in this RDN.
        Returns:
        attribute value assertions
      • getAttributeValues

        public AttributeValueAssertion.Value[] getAttributeValues​(java.lang.String oid)
        Deprecated.
        Returns the attribute values for the supplied oid.
        Parameters:
        oid - to match
        Returns:
        attribute values
      • getAttributeValues

        public <T> T[] getAttributeValues​(java.lang.String oid,
                                          ValueTranscoder<T> transcoder)
        Deprecated.
        Returns the attribute values decoded by the supplied transcoder.
        Type Parameters:
        T - type of value
        Parameters:
        oid - to match
        transcoder - to decode the binary value
        Returns:
        decoded attribute values
      • getAttributeValue

        public <T> T getAttributeValue​(java.lang.String oid,
                                       ValueTranscoder<T> transcoder)
        Deprecated.
        Returns a single attribute value for the supplied oid. See getAttributeValues(String, ValueTranscoder).
        Type Parameters:
        T - type of value
        Parameters:
        oid - to match
        transcoder - to decode the binary value
        Returns:
        decoded attribute value
      • encode

        public byte[] encode()
        Deprecated.
        Description copied from interface: DEREncoder
        Encode this object into it's DER type.
        Specified by:
        encode in interface DEREncoder
        Returns:
        DER encoded object
      • decode

        public static RDN[] decode​(DERBuffer encoded)
        Deprecated.
        Converts bytes in the buffer to RDNs by reading from the current position to the limit.
        Parameters:
        encoded - buffer containing DER-encoded data where the buffer is positioned at the tag of the RDN and the limit is set beyond the last byte of the RDN.
        Returns:
        decoded bytes as RDNs
      • equals

        public boolean equals​(java.lang.Object o)
        Deprecated.
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Deprecated.
        Overrides:
        hashCode in class java.lang.Object
      • toString

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