com.unboundid.ldap.sdk.unboundidds.controls.JoinedEntry Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of unboundid-ldapsdk-commercial-edition Show documentation
                Show all versions of unboundid-ldapsdk-commercial-edition Show documentation
      The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use
      Java API for communicating with LDAP directory servers and performing
      related tasks like reading and writing LDIF, encoding and decoding data
      using base64 and ASN.1 BER, and performing secure communication.  This
      package contains the Commercial Edition of the LDAP SDK, which includes
      all of the general-purpose functionality contained in the Standard
      Edition, plus additional functionality specific to UnboundID server
      products.
    
                
            /*
 * Copyright 2009-2016 UnboundID Corp.
 * All Rights Reserved.
 */
/*
 * Copyright (C) 2015-2016 UnboundID Corp.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License (GPLv2 only)
 * or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see .
 */
package com.unboundid.ldap.sdk.unboundidds.controls;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import com.unboundid.asn1.ASN1Element;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.asn1.ASN1Sequence;
import com.unboundid.ldap.sdk.Attribute;
import com.unboundid.ldap.sdk.Entry;
import com.unboundid.ldap.sdk.LDAPException;
import com.unboundid.ldap.sdk.ReadOnlyEntry;
import com.unboundid.ldap.sdk.ResultCode;
import com.unboundid.util.NotMutable;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import static com.unboundid.ldap.sdk.unboundidds.controls.ControlMessages.*;
import static com.unboundid.util.Debug.*;
import static com.unboundid.util.StaticUtils.*;
/**
 * 
 *   NOTE:  This class is part of the Commercial Edition of the UnboundID
 *   LDAP SDK for Java.  It is not available for use in applications that
 *   include only the Standard Edition of the LDAP SDK, and is not supported for
 *   use in conjunction with non-UnboundID products.
 * 
 * This class provides a joined entry, which is a read-only representation of an
 * entry that has been joined with a search result entry using the LDAP join
 * control.  See the class-level documentation for the
 * {@link JoinRequestControl} class for additional information and an example
 * demonstrating its use.
 * 
 * Joined entries are encoded as follows:
 * 
 *   JoinedEntry ::= SEQUENCE {
 *        objectName            LDAPDN,
 *        attributes            PartialAttributeList,
 *        nestedJoinResults     SEQUENCE OF JoinedEntry OPTIONAL }
 * 
 */
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class JoinedEntry
       extends ReadOnlyEntry
{
  /**
   * The serial version UID for this serializable class.
   */
  private static final long serialVersionUID = -6519864521813773703L;
  // The list of nested join results for this joined entry.
  private final List nestedJoinResults;
  /**
   * Creates a new joined entry with the specified DN, attributes, and nested
   * join results.
   *
   * @param  entry              The entry containing the DN and attributes to
   *                            use for this joined entry.  It must not be
   *                            {@code null}.
   * @param  nestedJoinResults  A list of nested join results for this joined
   *                            entry.  It may be {@code null} or empty if there
   *                            are no nested join results.
   */
  public JoinedEntry(final Entry entry,
                     final List nestedJoinResults)
  {
    this(entry.getDN(), entry.getAttributes(), nestedJoinResults);
  }
  /**
   * Creates a new joined entry with the specified DN, attributes, and nested
   * join results.
   *
   * @param  dn                 The DN for this joined entry.  It must not be
   *                            {@code null}.
   * @param  attributes         The set of attributes for this joined entry.  It
   *                            must not be {@code null}.
   * @param  nestedJoinResults  A list of nested join results for this joined
   *                            entry.  It may be {@code null} or empty if there
   *                            are no nested join results.
   */
  public JoinedEntry(final String dn, final Collection attributes,
                     final List nestedJoinResults)
  {
    super(dn, attributes);
    if (nestedJoinResults == null)
    {
      this.nestedJoinResults = Collections.emptyList();
    }
    else
    {
      this.nestedJoinResults = Collections.unmodifiableList(nestedJoinResults);
    }
  }
  /**
   * Encodes this joined entry to an ASN.1 element.
   *
   * @return  An ASN.1 element containing the encoded representation of this
   *          joined entry.
   */
  ASN1Element encode()
  {
    final ArrayList elements = new ArrayList(3);
    elements.add(new ASN1OctetString(getDN()));
    final ArrayList attrElements = new ArrayList();
    for (final Attribute a : getAttributes())
    {
      attrElements.add(a.encode());
    }
    elements.add(new ASN1Sequence(attrElements));
    if (! nestedJoinResults.isEmpty())
    {
      final ArrayList nestedElements =
           new ArrayList(nestedJoinResults.size());
      for (final JoinedEntry je : nestedJoinResults)
      {
        nestedElements.add(je.encode());
      }
      elements.add(new ASN1Sequence(nestedElements));
    }
    return new ASN1Sequence(elements);
  }
  /**
   * Decodes the provided ASN.1 element as a joined entry.
   *
   * @param  element  The ASN.1 element to decode as a joined entry.
   *
   * @return  The decoded joined entry.
   *
   * @throws  LDAPException  If a problem occurs while attempting to decode the
   *                         provided ASN.1 element as a joined entry.
   */
  static JoinedEntry decode(final ASN1Element element)
         throws LDAPException
  {
    try
    {
      final ASN1Element[] elements =
           ASN1Sequence.decodeAsSequence(element).elements();
      final String dn =
           ASN1OctetString.decodeAsOctetString(elements[0]).stringValue();
      final ASN1Element[] attrElements =
           ASN1Sequence.decodeAsSequence(elements[1]).elements();
      final ArrayList attrs =
           new ArrayList(attrElements.length);
      for (final ASN1Element e : attrElements)
      {
        attrs.add(Attribute.decode(ASN1Sequence.decodeAsSequence(e)));
      }
      final ArrayList nestedJoinResults;
      if (elements.length == 3)
      {
        final ASN1Element[] nestedElements =
             ASN1Sequence.decodeAsSequence(elements[2]).elements();
        nestedJoinResults = new ArrayList(nestedElements.length);
        for (final ASN1Element e : nestedElements)
        {
          nestedJoinResults.add(decode(e));
        }
      }
      else
      {
        nestedJoinResults = new ArrayList(0);
      }
      return new JoinedEntry(dn, attrs, nestedJoinResults);
    }
    catch (Exception e)
    {
      debugException(e);
      throw new LDAPException(ResultCode.DECODING_ERROR,
           ERR_JOINED_ENTRY_CANNOT_DECODE.get(getExceptionMessage(e)), e);
    }
  }
  /**
   * Retrieves the list of nested join results for this joined entry.
   *
   * @return  The list of nested join results for this joined entry, or an
   *          empty list if there are none.
   */
  public List getNestedJoinResults()
  {
    return nestedJoinResults;
  }
  /**
   * Appends a string representation of this joined entry to the provided
   * buffer.
   *
   * @param  buffer  The buffer to which the information should be appended.
   */
  @Override()
  public void toString(final StringBuilder buffer)
  {
    buffer.append("JoinedEntry(dn='");
    buffer.append(getDN());
    buffer.append("', attributes={");
    final Iterator attrIterator = getAttributes().iterator();
    while (attrIterator.hasNext())
    {
      attrIterator.next().toString(buffer);
      if (attrIterator.hasNext())
      {
        buffer.append(", ");
      }
    }
    buffer.append("}, nestedJoinResults={");
    final Iterator entryIterator = nestedJoinResults.iterator();
    while (entryIterator.hasNext())
    {
      entryIterator.next().toString(buffer);
      if (entryIterator.hasNext())
      {
        buffer.append(", ");
      }
    }
    buffer.append("})");
  }
}
                       © 2015 - 2025 Weber Informatics LLC | Privacy Policy