Home
last modified time | relevance | path

Searched refs:AdvisedSupport (Results 1 – 14 of 14) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/aop/framework/
H A DCglibProxyTests.java88 AdvisedSupport pc = new AdvisedSupport(new Class[]{ITestBean.class}); in testNoTarget()
105 AdvisedSupport as = new AdvisedSupport(new Class[]{}); in testProtectedMethodInvocation()
119 AdvisedSupport pc = new AdvisedSupport(); in testProxyCanBeClassNotInterface()
159 AdvisedSupport as = new AdvisedSupport(new Class[]{}); in testMethodInvocationDuringConstructor()
175 AdvisedSupport pc = new AdvisedSupport(new Class[]{}); in testUnadvisedProxyCreationWithCallDuringConstructor()
259 AdvisedSupport pc = new AdvisedSupport(new Class[]{}); in testWithNoArgConstructor()
276 AdvisedSupport as = new AdvisedSupport(new Class[]{}); in testProxyAProxy()
284 as = new AdvisedSupport(new Class[]{}); in testProxyAProxy()
297 AdvisedSupport as = new AdvisedSupport(new Class[]{}); in testProxyAProxyWithAdditionalInterface()
306 as = new AdvisedSupport(new Class[]{}); in testProxyAProxyWithAdditionalInterface()
[all …]
H A DJdkDynamicProxyTests.java52 protected AopProxy createAopProxy(AdvisedSupport as) { in createAopProxy()
69 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testProxyIsJustInterface()
83 AdvisedSupport pc = new AdvisedSupport(new Class[] { ITestBean.class }); in testInterceptorIsInvokedWithNoTarget()
104 AdvisedSupport pc = new AdvisedSupport(new Class[] { ITestBean.class, IOther.class }); in testTargetCanGetInvocationWithPrivateClass()
143 AdvisedSupport as = new AdvisedSupport(new Class[]{Named.class}); in testEqualsAndHashCodeDefined()
H A DAbstractAopProxyTests.java125 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testNoInterceptorsAndNoTarget()
423 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testContext()
466 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testDeclaredException()
500 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testUndeclaredCheckedException()
535 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testUndeclaredUnheckedException()
566 AdvisedSupport pc = new AdvisedSupport(new Class[] {INeedsToSeeProxy.class}); in testTargetCanGetInvocationEvenIfNoAdviceChain()
581 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class, IOther.class}); in testTargetCanGetInvocation()
1364 AdvisedSupport pc = new AdvisedSupport(new Class[] {ITestBean.class}); in testUserAttributes()
1859 private AdvisedSupport expectedSource;
1865 public void activated(AdvisedSupport advised) { in activated()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/test/java/org/springframework/aop/framework/
H A DAopProxyUtilsTests.java41 AdvisedSupport as = new AdvisedSupport(); in testCompleteProxiedInterfacesWorksWithNull()
51 AdvisedSupport as = new AdvisedSupport(); in testCompleteProxiedInterfacesWorksWithNullOpaque()
59 AdvisedSupport as = new AdvisedSupport(); in testCompleteProxiedInterfacesAdvisedNotIncluded()
74 AdvisedSupport as = new AdvisedSupport(); in testCompleteProxiedInterfacesAdvisedIncluded()
90 AdvisedSupport as = new AdvisedSupport(); in testCompleteProxiedInterfacesAdvisedNotIncludedOpaque()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/framework/
H A DAopProxyUtils.java81 public static Class[] completeProxiedInterfaces(AdvisedSupport advised) { in completeProxiedInterfaces()
138 public static boolean equalsInProxy(AdvisedSupport a, AdvisedSupport b) { in equalsInProxy()
146 public static boolean equalsProxiedInterfaces(AdvisedSupport a, AdvisedSupport b) { in equalsProxiedInterfaces()
153 public static boolean equalsAdvisors(AdvisedSupport a, AdvisedSupport b) { in equalsAdvisors()
H A DCglib2AopProxy.java98 protected final AdvisedSupport advised;
490 private final AdvisedSupport advised;
492 public AdvisedDispatcher(AdvisedSupport advised) { in AdvisedDispatcher()
508 private final AdvisedSupport advised;
510 public EqualsInterceptor(AdvisedSupport advised) { in EqualsInterceptor()
540 private final AdvisedSupport advised;
542 public HashCodeInterceptor(AdvisedSupport advised) { in HashCodeInterceptor()
586 private AdvisedSupport advised;
588 public DynamicAdvisedInterceptor(AdvisedSupport advised) { in DynamicAdvisedInterceptor()
700 private final AdvisedSupport advised;
[all …]
H A DDefaultAopProxyFactory.java56 public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException { in createAopProxy()
83 private boolean hasNoUserSuppliedProxyInterfaces(AdvisedSupport config) { in hasNoUserSuppliedProxyInterfaces()
95 public static AopProxy createCglibProxy(AdvisedSupport advisedSupport) { in createCglibProxy()
H A DAdvisedSupport.java62 public class AdvisedSupport extends ProxyConfig implements Advised { class
109 public AdvisedSupport() { in AdvisedSupport() method in AdvisedSupport
117 public AdvisedSupport(Class[] interfaces) { in AdvisedSupport() method in AdvisedSupport
501 protected void copyConfigurationFrom(AdvisedSupport other) { in copyConfigurationFrom()
512 …protected void copyConfigurationFrom(AdvisedSupport other, TargetSource targetSource, List<Advisor… in copyConfigurationFrom()
532 AdvisedSupport getConfigurationOnlyCopy() { in getConfigurationOnlyCopy()
533 AdvisedSupport copy = new AdvisedSupport(); in getConfigurationOnlyCopy()
H A DAdvisedSupportListener.java33 void activated(AdvisedSupport advised); in activated()
39 void adviceChanged(AdvisedSupport advised); in adviceChanged()
H A DJdkDynamicAopProxy.java79 private final AdvisedSupport advised;
98 public JdkDynamicAopProxy(AdvisedSupport config) throws AopConfigException { in JdkDynamicAopProxy()
100 …if (config.getAdvisors().length == 0 && config.getTargetSource() == AdvisedSupport.EMPTY_TARGET_SO… in JdkDynamicAopProxy()
H A DAopProxyFactory.java53 AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException; in createAopProxy()
H A DProxyCreatorSupport.java32 public class ProxyCreatorSupport extends AdvisedSupport {
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web/src/test/java/org/springframework/http/converter/xml/
H A DJaxb2RootElementHttpMessageConverterTest.java32 import org.springframework.aop.framework.AdvisedSupport;
53 AdvisedSupport advisedSupport = new AdvisedSupport(); in setUp()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/build/tmp/api/
H A Djavadoc.options118 …ing-framework-3.1.x/spring-aop/src/main/java/org/springframework/aop/framework/AdvisedSupport.java'