RE: Is Multiple Get and Put annotations Possible?

2010-08-18 Thread Neelmani Gautam
Hi Thierry, Thanks for reply to my query. I am having a situation where I need to call various methods with GET/PUT annotations. For e.g. as follow. public interface ContactResource{ @Get public ObjectRepresentationContact retrive(); @Post public ArrayListContact update(Address

Is Multiple Get and Put annotations Possible?

2010-08-09 Thread Neelmani Gautam
Hi, I would like to know if it possible to annotate multiple methods with Get and/or Put ? While I was trying to annotate multiple methods with Put annotations only one was got recognized. Thanks. --