Interface WorkflowResource


public interface WorkflowResource
  • Method Details

    • delete

      @DELETE jakarta.ws.rs.core.Response delete()
    • update

      @PUT @Consumes("application/json") jakarta.ws.rs.core.Response update(WorkflowRepresentation workflow)
    • toRepresentation

      @GET @Produces("application/json") WorkflowRepresentation toRepresentation()
    • activateAll

      @Path("activate-all") @POST void activateAll()
    • activateAll

      @Path("activate-all") @POST void activateAll(@QueryParam("notBefore") String notBefore)
    • activate

      @Path("activate/{type}/{resourceId}") @POST void activate(@PathParam("type") String type, @PathParam("resourceId") String resourceId)
    • activate

      @Path("activate/{type}/{resourceId}") @POST void activate(@PathParam("type") String type, @PathParam("resourceId") String resourceId, @QueryParam("notBefore") String notBefore)
    • deactivate

      @Path("deactivate/{type}/{resourceId}") @POST void deactivate(@PathParam("type") String type, @PathParam("resourceId") String resourceId)