Class AbstractScope
- java.lang.Object
-
- com.aspectran.core.component.bean.scope.AbstractScope
-
- All Implemented Interfaces:
Scope
,NonPersistent
- Direct Known Subclasses:
RequestScope
,SessionScope
,SingletonScope
public abstract class AbstractScope extends java.lang.Object implements Scope
The Class AbstractScope.- Since:
- 2011. 3. 12.
-
-
Constructor Summary
Constructors Constructor Description AbstractScope()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsBeanRule(BeanRule beanRule)
void
destroy()
Destroy all scoped beans in this scope.void
destroy(java.lang.Object bean)
BeanInstance
getBeanInstance(BeanRule beanRule)
Returns an instance of the bean that matches the given bean rule.BeanRule
getBeanRule(java.lang.Object bean)
void
putBeanInstance(Activity activity, BeanRule beanRule, BeanInstance beanInstance)
Saves an instantiated bean with the given bean rule into the scope.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.aspectran.core.component.bean.scope.Scope
getScopeLock, getScopeType
-
-
-
-
Method Detail
-
getBeanInstance
public BeanInstance getBeanInstance(BeanRule beanRule)
Description copied from interface:Scope
Returns an instance of the bean that matches the given bean rule.- Specified by:
getBeanInstance
in interfaceScope
- Parameters:
beanRule
- the bean rule of the bean to retrieve- Returns:
- an instance of the bean
-
putBeanInstance
public void putBeanInstance(Activity activity, BeanRule beanRule, BeanInstance beanInstance)
Description copied from interface:Scope
Saves an instantiated bean with the given bean rule into the scope.- Specified by:
putBeanInstance
in interfaceScope
- Parameters:
activity
- the current activitybeanRule
- the bean rule of the bean to savebeanInstance
- an instance of the bean
-
getBeanRule
public BeanRule getBeanRule(java.lang.Object bean)
- Specified by:
getBeanRule
in interfaceScope
-
containsBeanRule
public boolean containsBeanRule(BeanRule beanRule)
- Specified by:
containsBeanRule
in interfaceScope
-
destroy
public void destroy(java.lang.Object bean) throws java.lang.Exception
-
-