User development,

A new message was posted in the thread "another annotation scanner requirement":

http://community.jboss.org/message/518864#518864

Author  : Bill Burke
Profile : http://community.jboss.org/people/bill.bu...@jboss.com

Message:
--------------------------------------------------------------
My first question is, what is the right API to write a deployer that scans 
annotations?  AnnotationEnvironment?  Or is there a new one coming down the 
pipe?
 
Also, I need a new feature.  A query for all classes that implement an 
interface annotated with a specific annotation.  For example:
 
@Path("/rest")
public interface MyService {
   @GET
   @Produces("application/json")
   public Customer getCustomer(@PathParam("id") int id);
}




public class MyServiceBean implements MyService {...}
 
Here I'll need to know that MyServiceBean is implements an interface MyService 
that is annotated with @Path.  I don't mind doing and contributing this 
feature, I just need to know where to do the work in.
 
Thanks.

--------------------------------------------------------------

To reply to this message visit the message page: 
http://community.jboss.org/message/518864#518864


_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to