Oh. i am mistaken,

The @Provider annotation is not needed. However the annotated interface is
not picked up by the 'ResourceMethodRegistry' because it is an interface.. 
The following piece of code:

protected void processMethod(ResourceFactory ref, String base, Class<?>
clazz, Method method)
   {
      Path path = method.getAnnotation(Path.class);
      Set<String> httpMethods = IsHttpMethod.getHttpMethods(method);
      if (path == null && httpMethods == null)
      {
         if (clazz.isInterface()) return;


Returns and will not process the class further for jax-rs annotations making
my implementation invisible..

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/ANNOUNCEMENT-tapestry-resteasy-0-2-1-released-tp3291865p5453340.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to