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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-config/src/main/java/org/forgerock/opendj/config/RelationDefinition.java
@@ -95,7 +95,7 @@
    protected abstract static class AbstractBuilder<C extends ConfigurationClient, S extends Configuration,
        D extends RelationDefinition<C, S>> {
        // Common fields.
        /** Common fields. */
        private final Common<C, S> common;
        /**
@@ -157,19 +157,19 @@
     */
    protected static final class Common<C extends ConfigurationClient, S extends Configuration> {
        // The definition of the child managed object.
        /** The definition of the child managed object. */
        private final AbstractManagedObjectDefinition<C, S> cd;
        // The name of the relation.
        /** The name of the relation. */
        private final String name;
        // Options applicable to this definition.
        /** Options applicable to this definition. */
        private final Set<RelationOption> options;
        // The definition of the parent managed object.
        /** The definition of the parent managed object. */
        private final AbstractManagedObjectDefinition<?, ?> pd;
        // Private constructor.
        /** Private constructor. */
        private Common(AbstractManagedObjectDefinition<?, ?> pd, String name,
            AbstractManagedObjectDefinition<C, S> cd) {
            this.name = name;
@@ -179,7 +179,7 @@
        }
    }
    // Common fields.
    /** Common fields. */
    private final Common<C, S> common;
    /**
@@ -327,9 +327,7 @@
        return common.options.contains(option);
    }
    /**
     * {@inheritDoc}
     */
    /** {@inheritDoc} */
    @Override
    public final String toString() {
        StringBuilder builder = new StringBuilder();