Class DomainResource
- java.lang.Object
-
- org.glassfish.jersey.examples.sse.jersey.DomainResource
-
-
Constructor Summary
Constructors Constructor Description DomainResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventOutputgetProgress(int id, boolean testSource)Responsepost(int testSources)
-
-
-
Method Detail
-
post
@Path("start") @POST public Response post(@DefaultValue("0") @QueryParam("testSources") int testSources)
-
getProgress
@Path("process/{id}") @Produces("text/event-stream") @GET public EventOutput getProgress(@PathParam("id") int id, @DefaultValue("false") @QueryParam("testSource") boolean testSource)
-
-