@Path(value="/reportServices/") public interface ReportRepositoriesService
| Modifier and Type | Method and Description |
|---|---|
List<RepositoryProblemFacet> |
getHealthReport(String repository,
String groupId,
int rowCount) |
List<RepositoryStatistics> |
getStatisticsReport(List<String> repositoriesId,
int rowCount,
Date startDate,
Date endDate) |
@Path(value="getStatisticsReport")
@GET
@Produces(value={"application/json","application/xml"})
List<RepositoryStatistics> getStatisticsReport(@QueryParam(value="repository")
List<String> repositoriesId,
@QueryParam(value="rowCount")
int rowCount,
@QueryParam(value="startDate")
Date startDate,
@QueryParam(value="endDate")
Date endDate)
throws ArchivaRestServiceException
ArchivaRestServiceException@Path(value="getHealthReports/{repository}/{rowCount}")
@GET
@Produces(value={"application/json","application/xml"})
List<RepositoryProblemFacet> getHealthReport(@PathParam(value="repository")
String repository,
@QueryParam(value="groupId")
String groupId,
@PathParam(value="rowCount")
int rowCount)
throws ArchivaRestServiceException
ArchivaRestServiceExceptionCopyright © 2006–2023 The Apache Software Foundation. All rights reserved.