1 package org.apache.archiva.web.xmlrpc.api;
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
22 import java.util.Date;
23 import java.util.List;
25 import org.apache.archiva.web.xmlrpc.api.beans.Artifact;
26 import org.apache.archiva.web.xmlrpc.api.beans.Dependency;
28 import com.atlassian.xmlrpc.ServiceObject;
30 @ServiceObject("Search")
31 public interface SearchService
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
43 public List<Artifact> quickSearch( String queryString )
46 public List<Artifact> getArtifactByChecksum( String checksum) throws Exception;
48 public List<Artifact> getArtifactVersions( String groupId, String artifactId ) throws Exception;
50 public List<Artifact> getArtifactVersionsByDate( String groupId, String artifactId, String version, Date whenGathered )
53 public List<Dependency> getDependencies( String groupId, String artifactId, String version )
56 public List<Artifact> getDependencyTree( String groupId, String artifactId, String version ) throws Exception;
58 public List<Artifact> getDependees( String groupId, String artifactId, String version )