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

Jean-Noel Rouvignac
24.41.2015 e7cac727a9231ff3602e61a4ea678e0463eb0e39
opendj-server-legacy/src/main/java/org/opends/server/admin/DNPropertyDefinition.java
@@ -43,8 +43,10 @@
 */
public final class DNPropertyDefinition extends PropertyDefinition<DN> {
  // Optional base DN which all valid values must be immediately
  // subordinate to.
  /**
   * Optional base DN which all valid values must be immediately
   * subordinate to.
   */
  private final DN baseDN;
@@ -56,13 +58,15 @@
  public static class Builder extends
      AbstractBuilder<DN, DNPropertyDefinition> {
    // Optional base DN which all valid values must be immediately
    // subordinate to.
    /**
     * Optional base DN which all valid values must be immediately
     * subordinate to.
     */
    private DN baseDN;
    // Private constructor
    /** Private constructor. */
    private Builder(
        AbstractManagedObjectDefinition<?, ?> d, String propertyName) {
      super(d, propertyName);
@@ -108,9 +112,7 @@
    /**
     * {@inheritDoc}
     */
    /** {@inheritDoc} */
    @Override
    protected DNPropertyDefinition buildInstance(
        AbstractManagedObjectDefinition<?, ?> d, String propertyName,
@@ -141,7 +143,7 @@
  // Private constructor.
  /** Private constructor. */
  private DNPropertyDefinition(
      AbstractManagedObjectDefinition<?, ?> d, String propertyName,
      EnumSet<PropertyOption> options,
@@ -166,9 +168,7 @@
  /**
   * {@inheritDoc}
   */
  /** {@inheritDoc} */
  @Override
  public void validateValue(DN value)
      throws PropertyException {
@@ -189,9 +189,7 @@
  /**
   * {@inheritDoc}
   */
  /** {@inheritDoc} */
  @Override
  public DN decodeValue(String value)
      throws PropertyException {
@@ -210,9 +208,7 @@
  /**
   * {@inheritDoc}
   */
  /** {@inheritDoc} */
  @Override
  public <R, P> R accept(PropertyDefinitionVisitor<R, P> v, P p) {
    return v.visitDN(this, p);
@@ -220,9 +216,7 @@
  /**
   * {@inheritDoc}
   */
  /** {@inheritDoc} */
  @Override
  public <R, P> R accept(PropertyValueVisitor<R, P> v, DN value, P p) {
    return v.visitDN(this, value, p);
@@ -230,9 +224,7 @@
  /**
   * {@inheritDoc}
   */
  /** {@inheritDoc} */
  @Override
  public int compare(DN o1, DN o2) {
    return o1.compareTo(o2);