Interceptor classes and chain
-----------------------------

         Key: OPENEJB-79
         URL: http://jira.codehaus.org/browse/OPENEJB-79
     Project: OpenEJB
        Type: New Feature

  Components: ejb3 simplified  
    Versions: 3.0    
    Reporter: David Blevins
     Fix For: 3.0


Implement an interceptor chain

chain of methods finally delegating to bean business method or lifecycle 
callback.

Details:
 - stateless in nature.  
 - lifecycle undefined.  
 - apply to specific methods or all methods.  
 - constrained by same contract as the bean.  
 - shares same environment as bean.  
 - called after transaction and security checks.
 - may rely on dependency injection.

Declared on a bean as:
@Interceptors({
org.acme.SuperLogger.class,
org.acme.AuthorizationCheck.class,
})


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to