Coverage Report - org.apache.archiva.web.xmlrpc.api.SearchService
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchService
N/A
N/A
0
 
 1  
 package org.apache.archiva.web.xmlrpc.api;
 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  
 import java.util.Date;
 23  
 import java.util.List;
 24  
 
 25  
 import org.apache.archiva.web.xmlrpc.api.beans.Artifact;
 26  
 import org.apache.archiva.web.xmlrpc.api.beans.Dependency;
 27  
 
 28  
 import com.atlassian.xmlrpc.ServiceObject;
 29  
 
 30  
 @ServiceObject("SearchService")
 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  
     public List<Artifact> quickSearch( String queryString ) 
 44  
             throws Exception;
 45  
 
 46  
     public List<Artifact> getArtifactByChecksum( String checksum) throws Exception;
 47  
     
 48  
     public List<Artifact> getArtifactVersions( String groupId, String artifactId ) throws Exception;
 49  
     
 50  
     public List<Artifact> getArtifactVersionsByDate( String groupId, String artifactId, String version, Date whenGathered )
 51  
             throws Exception;
 52  
 
 53  
     public List<Dependency> getDependencies( String groupId, String artifactId, String version ) 
 54  
             throws Exception;
 55  
     
 56  
     public List<Artifact> getDependencyTree( String groupId, String artifactId, String version ) throws Exception;
 57  
     
 58  
     public List<Artifact> getDependees( String groupId, String artifactId, String version )
 59  
             throws Exception;    
 60  
 }