@Path(value="/user-operation")
public interface UserOperationLogRestService
UserOperationLogQuery
as REST service.Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
clearAnnotation(String operationId) |
CountResultDto |
queryUserOperationCount(javax.ws.rs.core.UriInfo uriInfo) |
List<UserOperationLogEntryDto> |
queryUserOperationEntries(javax.ws.rs.core.UriInfo uriInfo,
Integer firstResult,
Integer maxResults) |
javax.ws.rs.core.Response |
setAnnotation(String operationId,
AnnotationDto annotationDto) |
static final String PATH
@GET @Path(value="/count") @Produces(value="application/json") CountResultDto queryUserOperationCount(@Context javax.ws.rs.core.UriInfo uriInfo)
@GET @Produces(value="application/json") List<UserOperationLogEntryDto> queryUserOperationEntries(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam(value="firstResult") Integer firstResult, @QueryParam(value="maxResults") Integer maxResults)
@PUT @Path(value="/{operationId}/set-annotation") @Produces(value="application/json") @Consumes(value="application/json") javax.ws.rs.core.Response setAnnotation(@PathParam(value="operationId") String operationId, AnnotationDto annotationDto)
@PUT @Path(value="/{operationId}/clear-annotation") @Produces(value="application/json") javax.ws.rs.core.Response clearAnnotation(@PathParam(value="operationId") String operationId)
Copyright © 2022. All rights reserved.