Re: [Resteasy-users] Query on resteasy Interceptor

2013-01-05 Thread Bill Burke
On 1/4/2013 4:56 AM, ignou_mca wrote: > Hi folks, > > I am working on a poc using resteasy framework and resteasy's > MessageBodyWriterInterceptor > > the resource looks like this > > @GET > @Path("/{id}") > public Response getUserDetails(@PathParam("id") String id); > > > The bus

[Resteasy-users] Query on resteasy Interceptor

2013-01-04 Thread ignou_mca
Hi folks, I am working on a poc using resteasy framework and resteasy's MessageBodyWriterInterceptor the resource looks like this @GET @Path("/{id}") public Response getUserDetails(@PathParam("id") String id); The business logic is implemented using a stateless ejb below is the