hi,
i've an interface with two functions annotated with @get
public interface HelloWorld {
@Get("hello")
public String hello();
@Get("test2")
public String test2();
}
when i execute the client always the first function is executed but never test2
function.
if i change @get annotation on test2 for @put or any other one everything works
nice.
any tip to reuse the same annotation ??
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2626099