/******************************************************************************* * Copyright (c) 2011, 2013 IBM Corporation and others * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.equinox.metatype.impl; import java.util.*; import org.eclipse.equinox.metatype.Extendable; public class ExtendableHelper implements Extendable { private final Map> attributes; public ExtendableHelper() { this(Collections.> emptyMap()); } public ExtendableHelper(Map> attributes) { if (attributes == null) throw new NullPointerException(); this.attributes = attributes; } public Map getExtensionAttributes(String schema) { return Collections.unmodifiableMap(attributes.get(schema)); } public Set getExtensionUris() { return Collections.unmodifiableSet(attributes.keySet()); } }