Interface ConfParamService

    • Method Detail

      • get

        @GET
        @Path("{key}")
        @Produces("application/json")
        javax.ws.rs.core.Response get​(@NotNull @PathParam("key")
                                      @NotNull String key)
      • set

        @POST
        @Path("{key}")
        @Consumes("application/json")
        @Produces("application/json")
        javax.ws.rs.core.Response set​(@NotNull @PathParam("key")
                                      @NotNull String key,
                                      InputStream value)
      • remove

        @DELETE
        @Path("{key}")
        @Produces("application/json")
        javax.ws.rs.core.Response remove​(@NotNull @PathParam("key")
                                         @NotNull String key)