001/*
002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Thomas Roger
016 */
017
018package org.nuxeo.search.ui.localconfiguration;
019
020import java.util.List;
021
022import org.nuxeo.ecm.core.api.localconfiguration.LocalConfiguration;
023
024/**
025 * @since 6.0
026 */
027public interface SearchConfiguration extends LocalConfiguration<SearchConfiguration> {
028
029    /**
030     * Return a list of content views name that are denied with the local configuration
031     *
032     * @return an unmodifiable list of String or null.
033     */
034    List<String> getAllowedContentViewNames();
035
036    /**
037     * Provide a filter to remove unauthorized content views name.
038     *
039     * @param names set of possible content views name
040     * @return a set without unauthorised content views, it should be empty.
041     */
042    List<String> filterAllowedContentViewNames(List<String> names);
043}