@Path(value="/systemStatusService/") public interface SystemStatusService
Modifier and Type | Method and Description |
---|---|
Boolean |
clearAllCaches() |
Boolean |
clearCache(String cacheKey) |
List<CacheEntry> |
getCacheEntries() |
String |
getCurrentServerTime(String locale) |
String |
getMemoryStatus() |
List<QueueEntry> |
getQueueEntries() |
List<RepositoryScannerStatistics> |
getRepositoryScannerStatistics() |
@Path(value="memoryStatus") @GET @Produces(value="text/plain") String getMemoryStatus() throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="currentServerTime/{locale}") @GET @Produces(value="text/plain") String getCurrentServerTime(@PathParam(value="locale") String locale) throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="queueEntries") @GET @Produces(value={"application/json","application/xml"}) List<QueueEntry> getQueueEntries() throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="cacheEntries") @GET @Produces(value={"application/json","application/xml"}) List<CacheEntry> getCacheEntries() throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="clearCache/{key}") @GET @Produces(value={"application/json","application/xml"}) Boolean clearCache(@PathParam(value="key") String cacheKey) throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="clearAllCaches") @GET @Produces(value={"application/json","application/xml"}) Boolean clearAllCaches() throws ArchivaRestServiceException
ArchivaRestServiceException
@Path(value="repositoryScannerStatistics") @GET @Produces(value={"application/json","application/xml"}) List<RepositoryScannerStatistics> getRepositoryScannerStatistics() throws ArchivaRestServiceException
ArchivaRestServiceException
Copyright © 2006–2022 The Apache Software Foundation. All rights reserved.