01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tcspring;
05:
06: import org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory;
07:
08: import com.tc.aspectwerkz.joinpoint.StaticJoinPoint;
09:
10: /**
11: * Version for Spring 1.x
12: */
13: public interface VirtualizeSingletonBeanJoinPoint1 extends
14: StaticJoinPoint {
15:
16: Object proceed(Object bean, String beanName,
17: AbstractAutowireCapableBeanFactory beanFactory);
18:
19: }
|