1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tcspring; 5 6 import org.springframework.beans.factory.BeanFactory; 7 8 /** 9 * Introduction interface to save an accessible copy of BeanFactory 10 * 11 * @author Liyu Yi 12 */ 13 public interface BeanFactoryAware { 14 public void tc$setBeanFactory(BeanFactory factory); 15 public BeanFactory tc$getBeanFactory(); 16 } 17