Package org.camunda.bpm.engine.rest
Interface SchemaLogRestService
-
- All Known Implementing Classes:
SchemaLogRestServiceImpl
@Produces("application/json") public interface SchemaLogRestService
- Author:
- Miklas Boskamp
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<SchemaLogEntryDto>
getSchemaLog(javax.ws.rs.core.Request request, javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
List<SchemaLogEntryDto>
querySchemaLog(SchemaLogQueryDto dto, Integer firstResult, Integer maxResults)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSchemaLog
@GET @Produces("application/json") List<SchemaLogEntryDto> getSchemaLog(@Context javax.ws.rs.core.Request request, @Context javax.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)
-
-