If you use an annotated interface like 
[CODE]
interface CRUDHandler<T extends Request>{
   
    @Post
    public Object handlePost(T request);
}
[/CODE]

Parameter conversion does not work, because Restlet can't figure out T. It 
should find it on the implementing class, but Restlet uses the interface to 
resolve the actual parameter. 

@See AnnotationInfo


I don't know if this is a bug or a missing feature.

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2910995

Reply via email to