Home
last modified time | relevance | path

Searched refs:getTargetSource (Results 1 – 18 of 18) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/framework/
H A DCglib2AopProxy.java265 boolean isStatic = this.advised.getTargetSource().isStatic(); in getCallbacks()
275 new StaticUnadvisedExposedInterceptor(this.advised.getTargetSource().getTarget()) : in getCallbacks()
276 new DynamicUnadvisedExposedInterceptor(this.advised.getTargetSource()); in getCallbacks()
280 new StaticUnadvisedInterceptor(this.advised.getTargetSource().getTarget()) : in getCallbacks()
281 new DynamicUnadvisedInterceptor(this.advised.getTargetSource()); in getCallbacks()
313 chain, this.advised.getTargetSource().getTarget(), this.advised.getTargetClass()); in getCallbacks()
354 return Cglib2AopProxy.class.hashCode() * 13 + this.advised.getTargetSource().hashCode(); in hashCode()
654 return this.advised.getTargetSource().getTarget(); in getTarget()
658 this.advised.getTargetSource().releaseTarget(target); in releaseTarget()
775 boolean isStatic = this.advised.getTargetSource().isStatic(); in accept()
[all …]
H A DAopProxyUtils.java59 TargetSource targetSource = ((Advised) current).getTargetSource(); in ultimateTargetClass()
140 …lsProxiedInterfaces(a, b) && equalsAdvisors(a, b) && a.getTargetSource().equals(b.getTargetSource(… in equalsInProxy()
H A DJdkDynamicAopProxy.java100 …if (config.getAdvisors().length == 0 && config.getTargetSource() == AdvisedSupport.EMPTY_TARGET_SO… in JdkDynamicAopProxy()
113 logger.debug("Creating JDK dynamic proxy: target source is " + this.advised.getTargetSource()); in getProxy()
267 return JdkDynamicAopProxy.class.hashCode() * 13 + this.advised.getTargetSource().hashCode(); in hashCode()
H A DAdvised.java74 TargetSource getTargetSource(); in getTargetSource() method
H A DAdvisedSupport.java144 public TargetSource getTargetSource() { in getTargetSource() method in AdvisedSupport
535 copy.targetSource = EmptyTargetSource.forClass(getTargetClass(), getTargetSource().isStatic()); in getConfigurationOnlyCopy()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/framework/autoproxy/
H A DAdvisorAutoProxyCreatorTests.java122 assertTrue(advised.getTargetSource() instanceof PrototypeTargetSource); in testCustomPrototypeTargetSource()
137 assertTrue(advised.getTargetSource() instanceof LazyInitTargetSource); in testLazyInitTargetSource()
159 assertTrue(advised.getTargetSource() instanceof CommonsPoolTargetSource); in testQuickTargetSourceCreator()
168 assertTrue(advised.getTargetSource() instanceof ThreadLocalTargetSource); in testQuickTargetSourceCreator()
177 assertTrue(advised.getTargetSource() instanceof PrototypeTargetSource); in testQuickTargetSourceCreator()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/target/
H A DCommonsPoolTargetSourceTests.java121 assertTrue(((Advised) pooled).getTargetSource() instanceof CommonsPoolTargetSource); in testProxySerializableWithoutConfigMixin()
125 assertTrue(((Advised) serialized).getTargetSource() instanceof SingletonTargetSource); in testProxySerializableWithoutConfigMixin()
169 CommonsPoolTargetSource targetSource = (CommonsPoolTargetSource) person.getTargetSource(); in testHitMaxSizeLoadedFromContext()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/framework/autoproxy/
H A DTargetSourceCreator.java41 TargetSource getTargetSource(Class<?> beanClass, String beanName); in getTargetSource() method
H A DAbstractAutoProxyCreator.java421 TargetSource ts = tsc.getTargetSource(beanClass, beanName); in getCustomTargetSource()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/aspectj/
H A DDeclareParentsTests.java52 testBeanTarget = (TestBean) ((Advised) testBeanProxy).getTargetSource().getTarget(); in setUp()
H A DAfterAdviceBindingTests.java56 testBeanTarget = (TestBean) ((Advised) testBeanProxy).getTargetSource().getTarget(); in setUp()
H A DBeforeAdviceBindingTests.java59 testBeanTarget = (TestBean) ((Advised) testBeanProxy).getTargetSource().getTarget(); in setUp()
H A DAroundAdviceBindingTests.java61 this.testBeanTarget = (TestBean) ((Advised) testBeanProxy).getTargetSource().getTarget(); in onSetUp()
H A DAfterReturningAdviceBindingTests.java68 this.testBeanTarget = (TestBean) ((Advised)testBeanProxy).getTargetSource().getTarget(); in setUp()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/scripting/config/
H A DScriptingDefaultsTests.java46 ((AbstractRefreshableTargetSource) advised.getTargetSource()); in testDefaultRefreshCheckDelay()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/framework/autoproxy/target/
H A DAbstractBeanFactoryBasedTargetSourceCreator.java89 public final TargetSource getTargetSource(Class<?> beanClass, String beanName) { in getTargetSource() method in AbstractBeanFactoryBasedTargetSourceCreator
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/test/java/org/springframework/aop/target/
H A DHotSwappableTargetSourceTests.java161 hts = (HotSwappableTargetSource) ((Advised) p).getTargetSource(); in testSerialization()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/framework/
H A DAbstractAopProxyTests.java1069 assertSame(hts, advised.getTargetSource()); in testExistingProxyChangesTarget()
1073 assertSame(sts, advised.getTargetSource()); in testExistingProxyChangesTarget()