KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tcspring > ScopeContext


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.config.Scope;
7 import org.springframework.beans.factory.support.AbstractBeanFactory;
8
9 /**
10  * Scope context holder
11  *
12  * @author Eugene Kuleshov
13  */

14 public interface ScopeContext {
15
16   void setBeanId(Object JavaDoc beanId);
17   
18   void setScope(Scope scope);
19
20   void setBeanFactory(AbstractBeanFactory beanFactory);
21
22   Object JavaDoc getBeanId();
23   
24   Scope getScope();
25   
26   AbstractBeanFactory getBeanFactory();
27
28 }
29
30
Popular Tags