mirror of https://github.com/apache/archiva.git
fix javadoc
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1415145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e10a87a7b5
commit
19794ac917
|
@ -42,17 +42,14 @@ public interface SearchService
|
||||||
* query for an artifact based on a checksum
|
* query for an artifact based on a checksum
|
||||||
* query for all available versions of an artifact, sorted in version significance order
|
* query for all available versions of an artifact, sorted in version significance order
|
||||||
* query for an artifact's direct dependencies
|
* query for an artifact's direct dependencies
|
||||||
|
* <b>search will be apply on all repositories the current user has karma</b>
|
||||||
* TODO query for an artifact's dependency tree (as with mvn dependency:tree - no duplicates should be included)
|
* TODO query for an artifact's dependency tree (as with mvn dependency:tree - no duplicates should be included)
|
||||||
* TODO query for all artifacts that depend on a given artifact
|
* TODO query for all artifacts that depend on a given artifact
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@Path( "quickSearch" )
|
@Path( "quickSearch" )
|
||||||
@GET
|
@GET
|
||||||
@Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
|
@Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
|
||||||
@RedbackAuthorization( noPermission = true, noRestriction = true )
|
@RedbackAuthorization( noPermission = true, noRestriction = true )
|
||||||
/**
|
|
||||||
* <b>search will be apply on all repositories the current user has karma</b>
|
|
||||||
*/
|
|
||||||
List<Artifact> quickSearch( @QueryParam( "queryString" ) String queryString )
|
List<Artifact> quickSearch( @QueryParam( "queryString" ) String queryString )
|
||||||
throws ArchivaRestServiceException;
|
throws ArchivaRestServiceException;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue