Uses of Class
org.jboss.seam.intercept.AbstractInterceptor

Packages that use AbstractInterceptor
org.jboss.seam.async Seam asynchronicity: dispatcher implementations and schedule classes. 
org.jboss.seam.bpm A set of Seam components for business process management via jBPM, including control of process and task instances, rendering of task lists, and integration with jBPM. 
org.jboss.seam.core A set of Seam components that implement Seam. 
org.jboss.seam.ejb Integration with EJB 3.0. 
org.jboss.seam.persistence Seam components for working with JPA or Hibernate3. 
org.jboss.seam.security Seam Security 
org.jboss.seam.transaction Abstracts all possible transaction management APIs behind a JTA-compatible interface. 
org.jboss.seam.webservice Web Services integration. 
 

Uses of AbstractInterceptor in org.jboss.seam.async
 

Subclasses of AbstractInterceptor in org.jboss.seam.async
 class AsynchronousInterceptor
          Dispatches method calls to @Asynchronous methods asynchronously, and returns the "timer" object if necessary.
 

Uses of AbstractInterceptor in org.jboss.seam.bpm
 

Subclasses of AbstractInterceptor in org.jboss.seam.bpm
 class BusinessProcessInterceptor
          Implements annotation-based business-process demarcation.
 

Uses of AbstractInterceptor in org.jboss.seam.core
 

Subclasses of AbstractInterceptor in org.jboss.seam.core
 class BijectionInterceptor
          Before invoking the component, inject all dependencies.
 class ConversationalInterceptor
          Check that a conversational bean is not being invoked outside the scope of a long-running conversation.
 class ConversationInterceptor
          Implements annotation-based conversation demarcation.
 class EventInterceptor
          Raises Seam events connected with a bean lifecycle.
 class MethodContextInterceptor
          Sets up the METHOD context and unproxies the SFSB for the duration of the call.
 class SynchronizationInterceptor
          Serializes calls to a component.
 

Uses of AbstractInterceptor in org.jboss.seam.ejb
 

Subclasses of AbstractInterceptor in org.jboss.seam.ejb
 class RemoveInterceptor
          Removes SFSB components from the Seam context after invocation of an EJB @Remove method, or when a system exception is thrown from the bean.
 

Uses of AbstractInterceptor in org.jboss.seam.persistence
 

Subclasses of AbstractInterceptor in org.jboss.seam.persistence
 class EntityManagerProxyInterceptor
          Proxy the EntityManager if injected using @PersistenceContext
 class HibernateSessionProxyInterceptor
          Proxy the Hibernate Session if injected using @PersistenceContext
 class ManagedEntityInterceptor
          Swizzles entity references around each invocation, maintaining referential integrity even across passivation of the stateful bean or Seam-managed extended persistence context, and allowing for more efficient replication.
 

Uses of AbstractInterceptor in org.jboss.seam.security
 

Subclasses of AbstractInterceptor in org.jboss.seam.security
 class SecurityInterceptor
          Provides authorization services for component invocations.
 

Uses of AbstractInterceptor in org.jboss.seam.transaction
 

Subclasses of AbstractInterceptor in org.jboss.seam.transaction
 class RollbackInterceptor
          Automatically sets the current transaction to rollback only when an exception is thrown.
 class TransactionInterceptor
          Implements transaction propagation rules for Seam JavaBean components.
 

Uses of AbstractInterceptor in org.jboss.seam.webservice
 

Subclasses of AbstractInterceptor in org.jboss.seam.webservice
 class WSSecurityInterceptor
          Provides authorization services for web service invocations.