Interface SituationFeedbackRestService

    • Method Detail

      • getTags

        @GET
        @Path("/tags")
        @Produces("application/json")
        Collection<String> getTags​(@QueryParam("prefix")
                                   String prefix)
      • getFeedback

        @GET
        @Path("/{situationId : \\d+}")
        @Produces("application/json")
        Collection<AlarmFeedback> getFeedback​(@PathParam("situationId")
                                              int situationId)
      • setFeedback

        @POST
        @Path("/{situationId : \\d+}")
        @Consumes("application/json")
        @Produces("application/json")
        void setFeedback​(@PathParam("situationId")
                         int situationId,
                         List<AlarmFeedback> feedback)