Interface ProcessInstanceCommentResource

All Known Implementing Classes:
ProcessInstanceCommentResourceImpl

public interface ProcessInstanceCommentResource
  • Method Details

    • getComments

      @GET @Produces("application/json") List<CommentDto> getComments()
    • deleteComment

      @DELETE @Path("/{commentId}") @Produces("application/json") void deleteComment(@PathParam("commentId") String commentId)
    • updateComment

      @PUT @Consumes("application/json") void updateComment(CommentDto comment)
    • deleteComments

      @DELETE void deleteComments()