open class DocumentDefaultsDefinition : DefaultsDefinition
Simple JavaBean that holds the defaults specified at the <beans> level in a standard Spring XML bean definition document: default-lazy-init, default-autowire, etc.
Author
Juergen Hoeller
Since
2.0.2
DocumentDefaultsDefinition()
Simple JavaBean that holds the defaults specified at the |
open fun getAutowire(): String
Return the default autowire setting for the document that's currently parsed. |
|
open fun getAutowireCandidates(): String
Return the default autowire-candidate pattern for the document that's currently parsed. May also return a comma-separated list of patterns. |
|
open fun getDestroyMethod(): String
Return the default destroy-method setting for the document that's currently parsed. |
|
open fun getInitMethod(): String
Return the default init-method setting for the document that's currently parsed. |
|
open fun getLazyInit(): String
Return the default lazy-init flag for the document that's currently parsed. |
|
open fun getMerge(): String
Return the default merge setting for the document that's currently parsed. |
|
open fun getSource(): Any |
|
open fun setAutowire(autowire: String): Unit
Set the default autowire setting for the document that's currently parsed. |
|
open fun setAutowireCandidates(autowireCandidates: String): Unit
Set the default autowire-candidate pattern for the document that's currently parsed. Also accepts a comma-separated list of patterns. |
|
open fun setDestroyMethod(destroyMethod: String): Unit
Set the default destroy-method setting for the document that's currently parsed. |
|
open fun setInitMethod(initMethod: String): Unit
Set the default init-method setting for the document that's currently parsed. |
|
open fun setLazyInit(lazyInit: String): Unit
Set the default lazy-init flag for the document that's currently parsed. |
|
open fun setMerge(merge: String): Unit
Set the default merge setting for the document that's currently parsed. |
|
open fun setSource(source: Any): Unit
Set the configuration source The exact type of the object will depend on the configuration mechanism used. |