Package org.camunda.bpm.engine.rest
Interface IncidentRestService
- All Known Implementing Classes:
IncidentRestServiceImpl
@Produces("application/json")
public interface IncidentRestService
- Author:
- Roman Smirnov
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetIncident
(String incidentId) getIncidents
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theIncidentQuery
interface as a REST service.getIncidentsCount
(jakarta.ws.rs.core.UriInfo uriInfo)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getIncidents
@GET @Produces("application/json") List<IncidentDto> getIncidents(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) Exposes theIncidentQuery
interface as a REST service.- Parameters:
uriInfo
-firstResult
-maxResults
-- Returns:
-
getIncidentsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getIncidentsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
getIncident
-