Class ScopeMetadata
java.lang.Object
org.springframework.context.annotation.ScopeMetadata
Describes scope characteristics for a Spring-managed bean including the scope
 name and the scoped-proxy behavior.
 
The default scope is "singleton", and the default is to not create scoped-proxies.
- Since:
- 2.5
- Author:
- Mark Fisher, Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGet the proxy-mode to be applied to the scoped instance.Get the name of the scope.voidsetScopedProxyMode(ScopedProxyMode scopedProxyMode) Set the proxy-mode to be applied to the scoped instance.voidsetScopeName(String scopeName) Set the name of the scope.
- 
Constructor Details- 
ScopeMetadatapublic ScopeMetadata()
 
- 
- 
Method Details- 
setScopeNameSet the name of the scope.
- 
getScopeNameGet the name of the scope.
- 
setScopedProxyModeSet the proxy-mode to be applied to the scoped instance.
- 
getScopedProxyModeGet the proxy-mode to be applied to the scoped instance.
 
-