1 package org.apache.archiva.rest.api.services;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
23 import org.apache.archiva.rest.api.model.Artifact;
24 import org.apache.archiva.rest.api.model.Dependency;
26 import javax.ws.rs.Path;
27 import javax.xml.bind.annotation.XmlRootElement;
28 import java.util.Date;
29 import java.util.List;
31 @Path( "/searchService/" )
32 public interface SearchService
35 * quick/general text search which returns a list of artifacts
36 * query for an artifact based on a checksum
37 * query for all available versions of an artifact, sorted in version significance order
38 * query for all available versions of an artifact since a given date
39 * query for an artifact's direct dependencies
40 * query for an artifact's dependency tree (as with mvn dependency:tree - no duplicates should be included)
41 * query for all artifacts that depend on a given artifact
44 List<Artifact> quickSearch( String queryString )
47 List<Artifact> getArtifactByChecksum( String checksum )
50 List<Artifact> getArtifactVersions( String groupId, String artifactId )
53 List<Artifact> getArtifactVersionsByDate( String groupId, String artifactId, String version, Date whenGathered )
56 List<Dependency> getDependencies( String groupId, String artifactId, String version )
59 List<Artifact> getDependencyTree( String groupId, String artifactId, String version )
62 List<Artifact> getDependees( String groupId, String artifactId, String version )