mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
24.11.2015 8d21db36015f8560d9cd2bcee9817f2c0a07a386
opendj-server-legacy/src/main/java/org/opends/server/tools/makeldif/TemplateEntry.java
@@ -46,21 +46,25 @@
 */
public class TemplateEntry
{
  // The branch used to generate this entry (if it is associated with a branch).
  /** The branch used to generate this entry (if it is associated with a branch). */
  private Branch branch;
  // The DN for this template entry, if it is known.
  /** The DN for this template entry, if it is known. */
  private DN dn;
  // The DN of the parent entry for this template entry, if it is available.
  /** The DN of the parent entry for this template entry, if it is available. */
  private DN parentDN;
  // The set of attributes associated with this template entry, mapped from the
  // lowercase name of the attribute to the list of generated values.
  /**
   * The set of attributes associated with this template entry, mapped from the
   * lowercase name of the attribute to the list of generated values.
   */
  private LinkedHashMap<AttributeType,ArrayList<TemplateValue>> attributes;
  // The template used to generate this entry (if it is associated with a
  // template).
  /**
   * The template used to generate this entry (if it is associated with a
   * template).
   */
  private Template template;