]> source.dussan.org Git - archiva.git/blob
93285952d02997fa2a182e4895862f1c5ed066d6
[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.xml.bind.annotation.XmlRootElement;
27 import java.util.Date;
28 import java.util.List;
29
30 @XmlRootElement( name = "searchRequest" )
31 public interface SearchService
32 {
33     /*
34     * quick/general text search which returns a list of artifacts
35     * query for an artifact based on a checksum
36     * query for all available versions of an artifact, sorted in version significance order
37     * query for all available versions of an artifact since a given date
38     * query for an artifact's direct dependencies
39     * query for an artifact's dependency tree (as with mvn dependency:tree - no duplicates should be included)
40     * query for all artifacts that depend on a given artifact
41     */
42
43     List<Artifact> quickSearch( String queryString )
44         throws Exception;
45
46     List<Artifact> getArtifactByChecksum( String checksum )
47         throws Exception;
48
49     List<Artifact> getArtifactVersions( String groupId, String artifactId )
50         throws Exception;
51
52     List<Artifact> getArtifactVersionsByDate( String groupId, String artifactId, String version, Date whenGathered )
53         throws Exception;
54
55     List<Dependency> getDependencies( String groupId, String artifactId, String version )
56         throws Exception;
57
58     List<Artifact> getDependencyTree( String groupId, String artifactId, String version )
59         throws Exception;
60
61     List<Artifact> getDependees( String groupId, String artifactId, String version )
62         throws Exception;
63 }