Class EventResource


  • @Path("/v1/events")
    @Produces("application/json")
    @Consumes("application/json")
    public class EventResource
    extends Object
    • Method Detail

      • get

        @GET
        @Valid
        public @Valid ResultList<ChangeEvent> get​(@Context
                                                  javax.ws.rs.core.UriInfo uriInfo,
                                                  @QueryParam("entityCreated")
                                                  String entityCreated,
                                                  @QueryParam("entityUpdated")
                                                  String entityUpdated,
                                                  @QueryParam("entityRestored")
                                                  String entityRestored,
                                                  @QueryParam("entityDeleted")
                                                  String entityDeleted,
                                                  @QueryParam("timestamp")
                                                  long timestamp)
                                           throws IOException
        Throws:
        IOException