]> source.dussan.org Git - archiva.git/blob
0100906b03d6af5fb67a90b1b867a2310539c01f
[archiva.git] /
1 package org.apache.archiva.rest.api.services;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22
23 import org.apache.archiva.rest.api.model.Artifact;
24 import org.apache.archiva.rest.api.model.Dependency;
25
26 import javax.ws.rs.Path;
27 import java.util.List;
28
29 @Path( "/searchService/" )
30 public interface SearchService
31 {
32     /*
33     * quick/general text search which returns a list of artifacts
34     * query for an artifact based on a checksum
35     * query for all available versions of an artifact, sorted in version significance order
36     * query for an artifact's direct dependencies
37     * TODO query for an artifact's dependency tree (as with mvn dependency:tree - no duplicates should be included)
38     * TODO query for all artifacts that depend on a given artifact
39     */
40
41     List<Artifact> quickSearch( String queryString )
42         throws Exception;
43
44     List<Artifact> getArtifactByChecksum( String checksum )
45         throws Exception;
46
47     List<Artifact> getArtifactVersions( String groupId, String artifactId )
48         throws Exception;
49
50     List<Dependency> getDependencies( String groupId, String artifactId, String version )
51         throws Exception;
52
53 }