Uses of Interface
org.springframework.aop.TargetSource

Packages that use TargetSource
org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces. 
org.springframework.aop.framework.autoproxy Bean post processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean. 
org.springframework.aop.framework.autoproxy.target Generic support classes for target source creation. 
org.springframework.aop.target This package contains implementations of the org.springframework.aop.TargetSource interface. 
org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation. 
 

Uses of TargetSource in org.springframework.aop.framework
 

Fields in org.springframework.aop.framework declared as TargetSource
static TargetSource AdvisedSupport.EMPTY_TARGET_SOURCE
          Canonical TargetSource when there's no target, and behaviour is supplied by the advisors.
protected  TargetSource AdvisedSupport.targetSource
           
 

Methods in org.springframework.aop.framework that return TargetSource
 TargetSource AdvisedSupport.getTargetSource()
           
 TargetSource Advised.getTargetSource()
          Return the TargetSource used by this Advised object
 

Methods in org.springframework.aop.framework with parameters of type TargetSource
 void AdvisedSupport.setTargetSource(TargetSource ts)
           
 

Uses of TargetSource in org.springframework.aop.framework.autoproxy
 

Methods in org.springframework.aop.framework.autoproxy that return TargetSource
 TargetSource TargetSourceCreator.getTargetSource(java.lang.Object bean, java.lang.String beanName, BeanFactory factory)
          Create a special TargetSource for the given bean, if any.
 

Uses of TargetSource in org.springframework.aop.framework.autoproxy.target
 

Methods in org.springframework.aop.framework.autoproxy.target that return TargetSource
 TargetSource AbstractPrototypeTargetSourceCreator.getTargetSource(java.lang.Object bean, java.lang.String beanName, BeanFactory factory)
           
 

Uses of TargetSource in org.springframework.aop.target
 

Classes in org.springframework.aop.target that implement TargetSource
 class AbstractPoolingTargetSource
          Abstract uperclass for pooling TargetSources that maintains a pool of target instances, acquiring and releasing a target object from the pool for each method invocation.
 class AbstractPrototypeTargetSource
          Base class for dynamic TargetSources that can create new prototype bean instances to support a pooling or new-instance-per-invocation strategy.
 class CommonsPoolTargetSource
          Jakarta Commons pooling implementation extending AbstractPoolingInvokerInterceptor
 class HotSwappableTargetSource
          Implementation of TargetSource interface that caches a local target object, but allows the target to be swapped while the application is running.
 class PrototypeTargetSource
          TargetSource that creates a new instance of the target bean for each request.
 class SingletonTargetSource
          Implementation of the TargetSource interface that holds a local object.
 class ThreadLocalTargetSource
          Alternative to an object pool.
 

Uses of TargetSource in org.springframework.transaction.interceptor
 

Methods in org.springframework.transaction.interceptor that return TargetSource
protected  TargetSource TransactionProxyFactoryBean.createTargetSource(java.lang.Object target)
          Set the target or TargetSource.
 



Copyright (C) 2003-2004 The Spring Framework Project.