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

Jean-Noël Rouvignac
03.53.2016 c9958277baf5f911bda401802259a4b50d9cd599
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/SuffixNode.java
@@ -14,9 +14,10 @@
 * Copyright 2008 Sun Microsystems, Inc.
 * Portions Copyright 2016 ForgeRock AS.
 */
package org.opends.guitools.controlpanel.ui.nodes;
import org.forgerock.opendj.ldap.DN;
/** Represents a suffix in the tree in the 'Manage Entries...' tree. */
public class SuffixNode extends BasicNode {
@@ -26,7 +27,7 @@
   * Constructor of the node.
   * @param dn the DN of the suffix.
   */
  public SuffixNode(String dn) {
  public SuffixNode(DN dn) {
    super(dn);
  }
}