Package org.camunda.bpm.engine.rest
Interface DeploymentRestService
- All Known Implementing Classes:
DeploymentRestServiceImpl
@Produces("application/json")
public interface DeploymentRestService
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateDeployment
(jakarta.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData) getDeployment
(String deploymentId) getDeployments
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getDeploymentsCount
(jakarta.ws.rs.core.UriInfo uriInfo) getRegisteredDeployments
(jakarta.ws.rs.core.UriInfo uriInfo)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getDeployment
-
getDeployments
@GET @Produces("application/json") List<DeploymentDto> getDeployments(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
createDeployment
@POST @Path("/create") @Consumes("multipart/form-data") @Produces("application/json") DeploymentDto createDeployment(@Context jakarta.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData) -
getDeploymentsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getDeploymentsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
getRegisteredDeployments
-