Package org.camunda.bpm.engine.rest
Interface DeploymentRestService
-
- All Known Implementing Classes:
DeploymentRestServiceImpl
@Produces("application/json") public interface DeploymentRestService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentDto
createDeployment(javax.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData)
DeploymentResource
getDeployment(String deploymentId)
List<DeploymentDto>
getDeployments(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
CountResultDto
getDeploymentsCount(javax.ws.rs.core.UriInfo uriInfo)
Set<String>
getRegisteredDeployments(javax.ws.rs.core.UriInfo uriInfo)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDeployment
@Path("/{id}") DeploymentResource getDeployment(@PathParam("id") String deploymentId)
-
getDeployments
@GET @Produces("application/json") List<DeploymentDto> getDeployments(@Context javax.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 javax.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData)
-
getDeploymentsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getDeploymentsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-