class PrototypeScopedFactoryBeanHandler : ScopedFactoryBeanHandler
ScopedFactoryBeanHandler for the {@value #PROTOTYPE_SCOPE}-scope.
It produces a new bean-instance every time.
Author
Christopher Frieler
PrototypeScopedFactoryBeanHandler()
ScopedFactoryBeanHandler for the {@value #PROTOTYPE_SCOPE}-scope. |
val isActive: Boolean
Checks whether the scope is active, i.e. if beans of this scope are currently available. |
|
val name: String
Returns the name of the scope. |
fun <T : Any> getBean(name: String, factoryBean: ScopedFactoryBean<T>, dependencies: BeansProvider): T
Returns the bean defined by the given ScopedFactoryBean. |
const val PROTOTYPE_SCOPE: String |