Package org.camunda.bpm.engine.rest
Interface SchemaLogRestService
- All Known Implementing Classes:
SchemaLogRestServiceImpl
@Produces("application/json")
public interface SchemaLogRestService
- Author:
- Miklas Boskamp
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetSchemaLog
(jakarta.ws.rs.core.Request request, jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) querySchemaLog
(SchemaLogQueryDto dto, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getSchemaLog
@GET @Produces("application/json") List<SchemaLogEntryDto> getSchemaLog(@Context jakarta.ws.rs.core.Request request, @Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
querySchemaLog
@POST @Consumes("application/json") @Produces("application/json") List<SchemaLogEntryDto> querySchemaLog(SchemaLogQueryDto dto, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
-