Interface ViewLogsApi
-
- All Known Implementing Classes:
GlobalRestService
@Path("/") public interface ViewLogsApiWebswing REST APIThe public REST API provided by Webswing Server
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FiledownloadLog(String type)Download LogsList<BasicApplicationInfo>getAppsForSessionLogView()Get Session-Logging ApplicationsLogResponsegetLogs(String type, LogRequest logRequest)Request Log Content
-
-
-
Method Detail
-
downloadLog
@GET @Path("/rest/logs/{type}") @Produces("application/octet-stream") File downloadLog(@PathParam("type") String type) throws RestExceptionDownload Logs- Throws:
RestException
-
getAppsForSessionLogView
@GET @Path("/rest/logs/sessionApps") @Produces("application/json") List<BasicApplicationInfo> getAppsForSessionLogView() throws RestExceptionGet Session-Logging Applications- Throws:
RestException
-
getLogs
@POST @Path("/rest/logs/{type}") @Consumes("application/json") @Produces("application/json") LogResponse getLogs(@PathParam("type") String type, LogRequest logRequest) throws RestExceptionRequest Log Content- Throws:
RestException
-
-