Class AbstractMethodSecurityMetadataSource
- java.lang.Object
-
- org.springframework.security.access.method.AbstractMethodSecurityMetadataSource
-
- All Implemented Interfaces:
org.springframework.aop.framework.AopInfrastructureBean
,MethodSecurityMetadataSource
,SecurityMetadataSource
- Direct Known Subclasses:
AbstractFallbackMethodSecurityMetadataSource
,DelegatingMethodSecurityMetadataSource
,PrePostAnnotationSecurityMetadataSource
@Deprecated public abstract class AbstractMethodSecurityMetadataSource extends java.lang.Object implements MethodSecurityMetadataSource
Deprecated.Use theuse-authorization-manager
attribute for<method-security>
and<intercept-methods>
instead or use annotation-based orAuthorizationManager
-based authorizationAbstract implementation of MethodSecurityMetadataSource which resolves the secured object type to a MethodInvocation.
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.commons.logging.Log
logger
Deprecated.
-
Constructor Summary
Constructors Constructor Description AbstractMethodSecurityMetadataSource()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.Collection<ConfigAttribute>
getAttributes(java.lang.Object object)
Deprecated.Accesses theConfigAttribute
s that apply to a given secure object.boolean
supports(java.lang.Class<?> clazz)
Deprecated.Indicates whether theSecurityMetadataSource
implementation is able to provideConfigAttribute
s for the indicated secure object type.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.springframework.security.access.method.MethodSecurityMetadataSource
getAttributes
-
Methods inherited from interface org.springframework.security.access.SecurityMetadataSource
getAllConfigAttributes
-
-
-
-
Method Detail
-
getAttributes
public final java.util.Collection<ConfigAttribute> getAttributes(java.lang.Object object)
Deprecated.Description copied from interface:SecurityMetadataSource
Accesses theConfigAttribute
s that apply to a given secure object.- Specified by:
getAttributes
in interfaceSecurityMetadataSource
- Parameters:
object
- the object being secured- Returns:
- the attributes that apply to the passed in secured object. Should return an empty collection if there are no applicable attributes.
-
supports
public final boolean supports(java.lang.Class<?> clazz)
Deprecated.Description copied from interface:SecurityMetadataSource
Indicates whether theSecurityMetadataSource
implementation is able to provideConfigAttribute
s for the indicated secure object type.- Specified by:
supports
in interfaceSecurityMetadataSource
- Parameters:
clazz
- the class that is being queried- Returns:
- true if the implementation can process the indicated class
-
-