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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-config/src/main/java/org/forgerock/opendj/config/AliasDefaultBehaviorProvider.java
@@ -42,12 +42,16 @@
 */
public final class AliasDefaultBehaviorProvider<T> extends DefaultBehaviorProvider<T> {
    // The managed object definition associated with this default
    // behavior.
    /**
     * The managed object definition associated with this default
     * behavior.
     */
    private final AbstractManagedObjectDefinition<?, ?> definition;
    // The name of the property definition associated with this default
    // behavior.
    /**
     * The name of the property definition associated with this default
     * behavior.
     */
    private final String propertyName;
    /**
@@ -65,9 +69,7 @@
        this.propertyName = propertyName;
    }
    /**
     * {@inheritDoc}
     */
    /** {@inheritDoc} */
    public <R, P> R accept(DefaultBehaviorProviderVisitor<T, R, P> v, P p) {
        return v.visitAlias(this, p);
    }