1package org.apache.archiva.indexer.search;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122import org.apache.archiva.admin.model.RepositoryAdminException;
2324import java.util.Collection;
25import java.util.List;
26import java.util.Set;
272829publicinterfaceRepositorySearch30 {
31/**32 * Quick search by won't return artifact with file extension pom33 *34 * @param principal35 * @param selectedRepos36 * @param term37 * @param limits38 * @param previousSearchTerms39 * @return40 */41SearchResults search( String principal, List<String> selectedRepos, String term, SearchResultLimits limits,
42 List<String> previousSearchTerms )
43throws RepositorySearchException;
4445/**46 * Advanced search.47 *48 * @param principal49 * @param searchFields50 * @param limits51 * @return52 */53SearchResults search( String principal, SearchFields searchFields, SearchResultLimits limits )
54throws RepositorySearchException;
5556 Collection<String> getAllGroupIds( String principal, List<String> selectedRepos )
57throws RepositorySearchException;
5859 Set<String> getRemoteIndexingContextIds( String managedRepoId )
60throws RepositoryAdminException;
61 }