Interface Scope
-
- All Known Implementing Classes:
AbstractScope,ApplicationScope,RequestScope,SessionScope
public interface ScopeThe Interface Scope.- Since:
- 2011. 3. 12.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestroy()Destroy all scoped beans in this scope.BeanInstancegetBeanInstance(BeanRule beanRule)Returns an instance of the bean that matches the given bean rule.java.util.concurrent.locks.ReadWriteLockgetScopeLock()Returns the scope lock.voidputBeanInstance(BeanRule beanRule, BeanInstance beanInstance)Saves an instantiated bean with the given bean rule into the scope.
-
-
-
Method Detail
-
getScopeLock
java.util.concurrent.locks.ReadWriteLock getScopeLock()
Returns the scope lock.- Returns:
- the scope lock
-
getBeanInstance
BeanInstance getBeanInstance(BeanRule beanRule)
Returns an instance of the bean that matches the given bean rule.- Parameters:
beanRule- the bean rule of the bean to retrieve- Returns:
- an instance of the bean
-
putBeanInstance
void putBeanInstance(BeanRule beanRule, BeanInstance beanInstance)
Saves an instantiated bean with the given bean rule into the scope.- Parameters:
beanRule- the bean rule of the bean to savebeanInstance- an instance of the bean
-
destroy
void destroy()
Destroy all scoped beans in this scope.
-
-