I've some questions on Seam Interceptors to understand this better:

1. is it right, that the seam interceptors (cusom one i mean, the chap in the 
ref is named like that) are usual intercetors and the only seam controlled 
thing in th creation of th annotation?

2. on which parts can these interceptors be placed? all types of EJBs/seam 
components? Also Entities?
and on methods, fields, types,...?

Is there a deeper description than in the reference manual?

I tried to annotate fields/getters on an entityBean with:
@Interceptors(TestEntityInterceptor.class)
I also tried
@TestEntity
but nothing worked.
Any Help wanted :)

Dennis


@Target({FIELD, METHOD})
  | @Retention(RUNTIME)
  | @Documented
  | @Interceptors(TestEntityInterceptor.class)
  | public @interface TestEntity {}

@Around({BijectionInterceptor.class, ValidationInterceptor.class, 
  |    ConversationInterceptor.class, BusinessProcessInterceptor.class, 
LoggedInInterceptor.class})
  | @Within({RemoveInterceptor.class})
  | public class TestEntityInterceptor
  | {
  |    public TestEntityInterceptor() {}
  | 
  |    @AroundInvoke
  |    public Object testing(InvocationContext invocation) throws Exception
  |    {
  |        System.out.println("INTERCEPTOR CALLED AT"+ invocation.getMethod());
  |      return invocation.proceed();
  |    }
  | }

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925188#3925188

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925188


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to