Class GlobalMethodSecurityConfiguration
- java.lang.Object
-
- org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration
-
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanFactoryAware,org.springframework.beans.factory.SmartInitializingSingleton,org.springframework.context.annotation.ImportAware
@Deprecated @Configuration(proxyBeanMethods=false) @Role(2) public class GlobalMethodSecurityConfiguration extends java.lang.Object implements org.springframework.context.annotation.ImportAware, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.beans.factory.BeanFactoryAwareDeprecated.UsePrePostMethodSecurityConfiguration,SecuredMethodSecurityConfiguration, orJsr250MethodSecurityConfigurationinsteadBaseConfigurationfor enabling global method security. Classes may extend this class to customize the defaults, but must be sure to specify theEnableGlobalMethodSecurityannotation on the subclass.- Since:
- 3.2
- See Also:
EnableGlobalMethodSecurity
-
-
Constructor Summary
Constructors Constructor Description GlobalMethodSecurityConfiguration()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected org.springframework.security.access.AccessDecisionManageraccessDecisionManager()Deprecated.Allows subclasses to provide a customAccessDecisionManager.protected org.springframework.security.access.intercept.AfterInvocationManagerafterInvocationManager()Deprecated.Provide a customAfterInvocationManagerfor the default implementation ofmethodSecurityInterceptor(MethodSecurityMetadataSource).voidafterSingletonsInstantiated()Deprecated.protected org.springframework.security.authentication.AuthenticationManagerauthenticationManager()Deprecated.Allows providing a customAuthenticationManager.protected voidconfigure(AuthenticationManagerBuilder auth)Deprecated.Sub classes can override this method to register different types of authentication.protected org.springframework.security.access.expression.method.MethodSecurityExpressionHandlercreateExpressionHandler()Deprecated.Provide aMethodSecurityExpressionHandlerthat is registered with theExpressionBasedPreInvocationAdvice.protected org.springframework.security.access.method.MethodSecurityMetadataSourcecustomMethodSecurityMetadataSource()Deprecated.Provides a customMethodSecurityMetadataSourcethat is registered with themethodSecurityMetadataSource().protected org.springframework.security.access.expression.method.MethodSecurityExpressionHandlergetExpressionHandler()Deprecated.Gets theMethodSecurityExpressionHandleror creates it usingexpressionHandler.org.aopalliance.intercept.MethodInterceptormethodSecurityInterceptor(org.springframework.security.access.method.MethodSecurityMetadataSource methodSecurityMetadataSource)Deprecated.Creates the default MethodInterceptor which is a MethodSecurityInterceptor using the following methods to construct it.org.springframework.security.access.method.MethodSecurityMetadataSourcemethodSecurityMetadataSource()Deprecated.Provides the defaultMethodSecurityMetadataSourcethat will be used.org.springframework.security.access.prepost.PreInvocationAuthorizationAdvicepreInvocationAuthorizationAdvice()Deprecated.Creates thePreInvocationAuthorizationAdviceto be used.protected org.springframework.security.access.intercept.RunAsManagerrunAsManager()Deprecated.Provide a customRunAsManagerfor the default implementation ofmethodSecurityInterceptor(MethodSecurityMetadataSource).voidsetBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory)Deprecated.voidsetImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata)Deprecated.Obtains the attributes fromEnableGlobalMethodSecurityif this class was imported using theEnableGlobalMethodSecurityannotation.voidsetMethodSecurityExpressionHandler(java.util.List<org.springframework.security.access.expression.method.MethodSecurityExpressionHandler> handlers)Deprecated.voidsetObjectPostProcessor(ObjectPostProcessor<java.lang.Object> objectPostProcessor)Deprecated.
-
-
-
Method Detail
-
methodSecurityInterceptor
@Bean public org.aopalliance.intercept.MethodInterceptor methodSecurityInterceptor(org.springframework.security.access.method.MethodSecurityMetadataSource methodSecurityMetadataSource)
Deprecated.Creates the default MethodInterceptor which is a MethodSecurityInterceptor using the following methods to construct it.Subclasses can override this method to provide a different
MethodInterceptor.- Parameters:
methodSecurityMetadataSource- the defaultMethodSecurityMetadataSource.- Returns:
- the
MethodInterceptor.
-
afterSingletonsInstantiated
public void afterSingletonsInstantiated()
Deprecated.- Specified by:
afterSingletonsInstantiatedin interfaceorg.springframework.beans.factory.SmartInitializingSingleton
-
afterInvocationManager
protected org.springframework.security.access.intercept.AfterInvocationManager afterInvocationManager()
Deprecated.Provide a customAfterInvocationManagerfor the default implementation ofmethodSecurityInterceptor(MethodSecurityMetadataSource). The default is null if pre post is not enabled. Otherwise, it returns aAfterInvocationProviderManager.Subclasses should override this method to provide a custom
AfterInvocationManager- Returns:
- the
AfterInvocationManagerto use
-
runAsManager
protected org.springframework.security.access.intercept.RunAsManager runAsManager()
Deprecated.Provide a customRunAsManagerfor the default implementation ofmethodSecurityInterceptor(MethodSecurityMetadataSource). The default is null.- Returns:
- the
RunAsManagerto use
-
accessDecisionManager
protected org.springframework.security.access.AccessDecisionManager accessDecisionManager()
Deprecated.Allows subclasses to provide a customAccessDecisionManager. The default is aAffirmativeBasedwith the following voters:PreInvocationAuthorizationAdviceVoterRoleVoterAuthenticatedVoter
- Returns:
- the
AccessDecisionManagerto use
-
createExpressionHandler
protected org.springframework.security.access.expression.method.MethodSecurityExpressionHandler createExpressionHandler()
Deprecated.Provide aMethodSecurityExpressionHandlerthat is registered with theExpressionBasedPreInvocationAdvice. The default isDefaultMethodSecurityExpressionHandlerwhich optionally will Autowire anAuthenticationTrustResolver.Subclasses may override this method to provide a custom
MethodSecurityExpressionHandler- Returns:
- the
MethodSecurityExpressionHandlerto use
-
getExpressionHandler
protected final org.springframework.security.access.expression.method.MethodSecurityExpressionHandler getExpressionHandler()
Deprecated.Gets theMethodSecurityExpressionHandleror creates it usingexpressionHandler.- Returns:
- a non
nullMethodSecurityExpressionHandler
-
customMethodSecurityMetadataSource
protected org.springframework.security.access.method.MethodSecurityMetadataSource customMethodSecurityMetadataSource()
Deprecated.Provides a customMethodSecurityMetadataSourcethat is registered with themethodSecurityMetadataSource(). Default is null.- Returns:
- a custom
MethodSecurityMetadataSourcethat is registered with themethodSecurityMetadataSource()
-
authenticationManager
protected org.springframework.security.authentication.AuthenticationManager authenticationManager() throws java.lang.ExceptionDeprecated.Allows providing a customAuthenticationManager. The default is to use any authentication mechanisms registered byconfigure(AuthenticationManagerBuilder). Ifconfigure(AuthenticationManagerBuilder)was not overridden, then anAuthenticationManageris attempted to be autowired by type.- Returns:
- the
AuthenticationManagerto use - Throws:
java.lang.Exception
-
configure
protected void configure(AuthenticationManagerBuilder auth) throws java.lang.Exception
Deprecated.Sub classes can override this method to register different types of authentication. If not overridden,configure(AuthenticationManagerBuilder)will attempt to autowire by type.- Parameters:
auth- theAuthenticationManagerBuilderused to register different authentication mechanisms for the global method security.- Throws:
java.lang.Exception
-
methodSecurityMetadataSource
@Bean @Role(2) public org.springframework.security.access.method.MethodSecurityMetadataSource methodSecurityMetadataSource()
Deprecated.Provides the defaultMethodSecurityMetadataSourcethat will be used. It creates aDelegatingMethodSecurityMetadataSourcebased uponcustomMethodSecurityMetadataSource()and the attributes onEnableGlobalMethodSecurity.- Returns:
- the
MethodSecurityMetadataSource
-
preInvocationAuthorizationAdvice
@Bean public org.springframework.security.access.prepost.PreInvocationAuthorizationAdvice preInvocationAuthorizationAdvice()
Deprecated.Creates thePreInvocationAuthorizationAdviceto be used. The default isExpressionBasedPreInvocationAdvice.- Returns:
- the
PreInvocationAuthorizationAdvice
-
setImportMetadata
public final void setImportMetadata(org.springframework.core.type.AnnotationMetadata importMetadata)
Deprecated.Obtains the attributes fromEnableGlobalMethodSecurityif this class was imported using theEnableGlobalMethodSecurityannotation.- Specified by:
setImportMetadatain interfaceorg.springframework.context.annotation.ImportAware
-
setObjectPostProcessor
@Autowired(required=false) public void setObjectPostProcessor(ObjectPostProcessor<java.lang.Object> objectPostProcessor)
Deprecated.
-
setMethodSecurityExpressionHandler
@Autowired(required=false) public void setMethodSecurityExpressionHandler(java.util.List<org.springframework.security.access.expression.method.MethodSecurityExpressionHandler> handlers)
Deprecated.
-
setBeanFactory
public void setBeanFactory(org.springframework.beans.factory.BeanFactory beanFactory) throws org.springframework.beans.BeansExceptionDeprecated.- Specified by:
setBeanFactoryin interfaceorg.springframework.beans.factory.BeanFactoryAware- Throws:
org.springframework.beans.BeansException
-
-