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

Nicolas Capponi
26.31.2013 ac0ef777f930132975d25416e9a928eee2e77dce
opendj-admin/src/main/java/org/opends/server/admin/Configuration.java
@@ -29,26 +29,23 @@
import org.forgerock.opendj.ldap.DN;
/**
 * A common base interface for all server managed object
 * configurations.
 * A common base interface for all server managed object configurations.
 */
public interface Configuration {
  /**
   * Gets the DN of the LDAP entry associated with this configuration.
   *
   * @return Returns the DN of the LDAP entry associated with this
   *         configuration.
   */
  DN dn();
    /**
     * Gets the DN of the LDAP entry associated with this configuration.
     *
     * @return Returns the DN of the LDAP entry associated with this
     *         configuration.
     */
    DN dn();
  /**
   * Gets the configuration class associated with this configuration.
   *
   * @return Returns the configuration class associated with this
   *         configuration.
   */
  Class<? extends Configuration> configurationClass();
    /**
     * Gets the configuration class associated with this configuration.
     *
     * @return Returns the configuration class associated with this
     *         configuration.
     */
    Class<? extends Configuration> configurationClass();
}