Interface DeploymentRestService

All Known Implementing Classes:
DeploymentRestServiceImpl

@Produces("application/json") public interface DeploymentRestService
  • Field Details

  • Method Details

    • getDeployment

      @Path("/{id}") DeploymentResource getDeployment(@PathParam("id") String deploymentId)
    • 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

      @GET @Path("/registered") @Produces("application/json") Set<String> getRegisteredDeployments(@Context jakarta.ws.rs.core.UriInfo uriInfo)