/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.uiextension.internal.filter; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.inject.Named; import javax.inject.Singleton; import org.xwiki.component.annotation.Component; import org.xwiki.uiextension.UIExtension; import org.xwiki.uiextension.UIExtensionFilter; /** * Select only some {@link UIExtension}s from a list, identified by their ID. This allows to choose precisely what * will be displayed by an Extension Point, the list of displayed extensions will be defined manually. * * @version $Id: 55f83facf1e9b6b5752d2131a010d992a9a644c5 $ * @since 4.3M1 */ @Component @Singleton @Named("select") public class SelectFilter implements UIExtensionFilter { /** * @param extensions The list of {@link UIExtension}s to filter * @param ids The IDs of the {@link UIExtension}s to select * @return The filtered list */ @Override public List<UIExtension> filter(List<UIExtension> extensions, String... ids) { List<String> extensionIds = Arrays.asList(ids); List<UIExtension> results = new ArrayList<UIExtension>(); for (String id : extensionIds) { for (UIExtension extension : extensions) { if (id.equals(extension.getId())) { results.add(extension); } } } return results; } }