Package org.camunda.bpm.engine.rest
Interface FilterRestService
-
- All Known Implementing Classes:
FilterRestServiceImpl
@Produces("application/json") public interface FilterRestService
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PATH
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceOptionsDto
availableOperations(javax.ws.rs.core.UriInfo context)
FilterDto
createFilter(FilterDto filterDto)
FilterResource
getFilter(java.lang.String filterId)
java.util.List<FilterDto>
getFilters(javax.ws.rs.core.UriInfo uriInfo, java.lang.Boolean itemCount, java.lang.Integer firstResult, java.lang.Integer maxResults)
CountResultDto
getFiltersCount(javax.ws.rs.core.UriInfo uriInfo)
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getFilter
@Path("/{id}") FilterResource getFilter(@PathParam("id") java.lang.String filterId)
-
getFilters
@GET @Produces("application/json") java.util.List<FilterDto> getFilters(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("itemCount") java.lang.Boolean itemCount, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
-
getFiltersCount
@GET @Path("/count") @Produces("application/json") CountResultDto getFiltersCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
createFilter
@POST @Path("/create") @Consumes("application/json") @Produces("application/json") FilterDto createFilter(FilterDto filterDto)
-
availableOperations
@OPTIONS @Produces("application/json") ResourceOptionsDto availableOperations(@Context javax.ws.rs.core.UriInfo context)
-
-