Interface DeploymentRestService

  • All Known Implementing Classes:
    DeploymentRestServiceImpl

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

      • 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)
      • getRegisteredDeployments

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