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/Template.java
@@ -45,26 +45,28 @@
 */
public class Template
{
  // The attribute types that are used in the RDN for entries generated using
  // this template.
  /**
   * The attribute types that are used in the RDN for entries generated using
   * this template.
   */
  private AttributeType[] rdnAttributes;
  // The number of entries to create for each subordinate template.
  /** The number of entries to create for each subordinate template. */
  private int[] numEntriesPerTemplate;
  // The name for this template.
  /** The name for this template. */
  private String name;
  // The names of the subordinate templates below this template.
  /** The names of the subordinate templates below this template. */
  private String[] subordinateTemplateNames;
  // The subordinate templates below this template.
  /** The subordinate templates below this template. */
  private Template[] subordinateTemplates;
  // The template file that contains this template.
  /** The template file that contains this template. */
  private TemplateFile templateFile;
  // The set of template lines for this template.
  /** The set of template lines for this template. */
  private TemplateLine[] templateLines;