Interface DeploymentRestService

  • All Known Implementing Classes:
    DeploymentRestServiceImpl

    @Produces("application/json")
    public interface DeploymentRestService
    • Method Detail

      • getDeployment

        @Path("/{id}")
        DeploymentResource getDeployment​(@PathParam("id")
                                         java.lang.String deploymentId)
      • getDeployments

        @GET
        @Produces("application/json")
        java.util.List<DeploymentDto> getDeployments​(@Context
                                                     javax.ws.rs.core.UriInfo uriInfo,
                                                     @QueryParam("firstResult")
                                                     java.lang.Integer firstResult,
                                                     @QueryParam("maxResults")
                                                     java.lang.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)