org.jboss.seam.intercept
Class SessionBeanInterceptor
java.lang.Object
org.jboss.seam.intercept.RootInterceptor
org.jboss.seam.intercept.SessionBeanInterceptor
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- SeamInterceptor
public class SessionBeanInterceptor
- extends RootInterceptor
Controller interceptor for server-side interceptors of
EJB3 session bean components.
- Author:
- Gavin King
- See Also:
- Serialized Form
|
Method Summary |
java.lang.Object |
aroundInvoke(javax.interceptor.InvocationContext invocation)
|
void |
postActivate(javax.interceptor.InvocationContext invocation)
|
void |
postConstruct(javax.interceptor.InvocationContext invocation)
|
void |
preDestroy(javax.interceptor.InvocationContext invocation)
|
void |
prePassivate(javax.interceptor.InvocationContext invocation)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
COMPONENT
public static java.lang.ThreadLocal<Component> COMPONENT
SessionBeanInterceptor
public SessionBeanInterceptor()
- Called when instantiated by EJB container.
(In this case it might be a Seam component,
but we won't know until postConstruct() is
called.)
aroundInvoke
public java.lang.Object aroundInvoke(javax.interceptor.InvocationContext invocation)
throws java.lang.Exception
- Throws:
java.lang.Exception
prePassivate
public void prePassivate(javax.interceptor.InvocationContext invocation)
postActivate
public void postActivate(javax.interceptor.InvocationContext invocation)
preDestroy
@PreDestroy
public void preDestroy(javax.interceptor.InvocationContext invocation)
postConstruct
@PostConstruct
public void postConstruct(javax.interceptor.InvocationContext invocation)
Copyright © 2011 Seam Framework. All Rights Reserved.