/* * The contents of this file are subject to the terms of the Common Development and * Distribution License (the License). You may not use this file except in compliance with the * License. * * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the * specific language governing permission and limitations under the License. * * When distributing Covered Software, include this CDDL Header Notice in each file and include * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL * Header, with the fields enclosed by brackets [] replaced by your own identifying * information: "Portions Copyright [year] [name of copyright owner]". * * Copyright 2009 Sun Microsystems, Inc. * Portions Copyright 2015-2016 ForgeRock AS. */ package org.forgerock.opendj.config; import java.util.Collections; import java.util.HashMap; import java.util.Locale; import java.util.Map; import java.util.Set; import org.forgerock.i18n.LocalizableMessage; /** * A managed object composite relationship definition which represents a * composition of zero or more managed objects each of which must have a * different type. The manage objects are named using their type name. * * @param * The type of client managed object configuration that this relation * definition refers to. * @param * The type of server managed object configuration that this relation * definition refers to. */ public final class SetRelationDefinition extends RelationDefinition { /** * An interface for incrementally constructing set relation definitions. * * @param * The type of client managed object configuration that this * relation definition refers to. * @param * The type of server managed object configuration that this * relation definition refers to. */ public static final class Builder extends AbstractBuilder> { /** The plural name of the relation. */ private final String pluralName; /** The optional default managed objects associated with this set relation definition. */ private final Map> defaultManagedObjects = new HashMap<>(); /** * Creates a new builder which can be used to incrementally build a set * relation definition. * * @param pd * The parent managed object definition. * @param name * The name of the relation. * @param pluralName * The plural name of the relation. * @param cd * The child managed object definition. */ public Builder(AbstractManagedObjectDefinition pd, String name, String pluralName, AbstractManagedObjectDefinition cd) { super(pd, name, cd); this.pluralName = pluralName; } /** * Adds the default managed object to this set relation definition. * * @param defaultManagedObject * The default managed object. */ public void setDefaultManagedObject(DefaultManagedObject defaultManagedObject) { this.defaultManagedObjects.put(defaultManagedObject.getManagedObjectDefinition().getName(), defaultManagedObject); } @Override protected SetRelationDefinition buildInstance(Common common) { return new SetRelationDefinition<>(common, pluralName, defaultManagedObjects); } } /** The plural name of the relation. */ private final String pluralName; /** The optional default managed objects associated with this set relation definition. */ private final Map> defaultManagedObjects; /** Private constructor. */ private SetRelationDefinition(Common common, String pluralName, Map> defaultManagedObjects) { super(common); this.pluralName = pluralName; this.defaultManagedObjects = defaultManagedObjects; } @Override public R accept(RelationDefinitionVisitor v, P p) { return v.visitSet(this, p); } /** * Gets the named default managed object associated with this set relation * definition. * * @param name * The name of the default managed object (for set relations this * is the type of the default managed object). * @return The named default managed object. * @throws IllegalArgumentException * If there is no default managed object associated with the * provided name. */ public DefaultManagedObject getDefaultManagedObject(String name) { if (!defaultManagedObjects.containsKey(name)) { throw new IllegalArgumentException("unrecognized default managed object \"" + name + "\""); } return defaultManagedObjects.get(name); } /** * Gets the names of the default managed objects associated with this set * relation definition. * * @return An unmodifiable set containing the names of the default managed * object. */ public Set getDefaultManagedObjectNames() { return Collections.unmodifiableSet(defaultManagedObjects.keySet()); } /** * Gets the plural name of the relation. * * @return The plural name of the relation. */ public String getPluralName() { return pluralName; } /** * Gets the user friendly plural name of this relation definition in the * default locale. * * @return Returns the user friendly plural name of this relation definition * in the default locale. */ public LocalizableMessage getUserFriendlyPluralName() { return getUserFriendlyPluralName(Locale.getDefault()); } /** * Gets the user friendly plural name of this relation definition in the * specified locale. * * @param locale * The locale. * @return Returns the user friendly plural name of this relation definition * in the specified locale. */ public LocalizableMessage getUserFriendlyPluralName(Locale locale) { String property = "relation." + getName() + ".user-friendly-plural-name"; return ManagedObjectDefinitionI18NResource.getInstance().getMessage(getParentDefinition(), property, locale); } @Override public void toString(StringBuilder builder) { builder.append("name="); builder.append(getName()); builder.append(" type=set parent="); builder.append(getParentDefinition().getName()); builder.append(" child="); builder.append(getChildDefinition().getName()); } @Override protected void initialize() throws Exception { for (DefaultManagedObject dmo : defaultManagedObjects.values()) { dmo.initialize(); } } }