Spring Security Framework

Uses of Interface
org.springframework.security.ConfigAttribute

Packages that use ConfigAttribute
org.springframework.security Provides core Spring Security interfaces and classes. 
org.springframework.security.afterinvocation Used for post-processing of an object returned from a secure object invocation. 
org.springframework.security.annotation   
org.springframework.security.runas Allows secure objects to be run under a different authentication identity. 
org.springframework.security.securechannel Classes that ensure web requests are received over required transport channels. 
org.springframework.security.vote Implements a vote-based approach to authorization decisions. 
 

Uses of ConfigAttribute in org.springframework.security
 

Classes in org.springframework.security that implement ConfigAttribute
 class SecurityConfig
          Stores a ConfigAttribute as a String.
 

Methods in org.springframework.security with parameters of type ConfigAttribute
 boolean ConfigAttributeDefinition.contains(ConfigAttribute configAttribute)
          Indicates whether the specified ConfigAttribute is contained within this ConfigAttributeDefinition.
 boolean RunAsManager.supports(ConfigAttribute attribute)
          Indicates whether this RunAsManager is able to process the passed ConfigAttribute.
 boolean AfterInvocationManager.supports(ConfigAttribute attribute)
          Indicates whether this AfterInvocationManager is able to process "after invocation" requests presented with the passed ConfigAttribute.
 boolean AccessDecisionManager.supports(ConfigAttribute attribute)
          Indicates whether this AccessDecisionManager is able to process authorization requests presented with the passed ConfigAttribute.
 

Constructors in org.springframework.security with parameters of type ConfigAttribute
ConfigAttributeDefinition(ConfigAttribute attribute)
          Creates a ConfigAttributeDefinition containing a single attribute.
 

Uses of ConfigAttribute in org.springframework.security.afterinvocation
 

Methods in org.springframework.security.afterinvocation with parameters of type ConfigAttribute
 boolean AbstractAclProvider.supports(ConfigAttribute attribute)
           
 boolean BasicAclEntryAfterInvocationProvider.supports(ConfigAttribute attribute)
          Deprecated.  
 boolean BasicAclEntryAfterInvocationCollectionFilteringProvider.supports(ConfigAttribute attribute)
          Deprecated.  
 boolean AfterInvocationProviderManager.supports(ConfigAttribute attribute)
           
 boolean AfterInvocationProvider.supports(ConfigAttribute attribute)
          Indicates whether this AfterInvocationProvider is able to participate in a decision involving the passed ConfigAttribute.
 

Uses of ConfigAttribute in org.springframework.security.annotation
 

Classes in org.springframework.security.annotation that implement ConfigAttribute
 class Jsr250SecurityConfig
          Security config applicable as a JSR 250 annotation attribute.
 

Methods in org.springframework.security.annotation with parameters of type ConfigAttribute
 boolean Jsr250Voter.supports(ConfigAttribute configAttribute)
          The specified config attribute is supported if its an instance of a Jsr250SecurityConfig.
 

Uses of ConfigAttribute in org.springframework.security.runas
 

Methods in org.springframework.security.runas with parameters of type ConfigAttribute
 boolean RunAsManagerImpl.supports(ConfigAttribute attribute)
           
 boolean NullRunAsManager.supports(ConfigAttribute attribute)
           
 

Uses of ConfigAttribute in org.springframework.security.securechannel
 

Methods in org.springframework.security.securechannel with parameters of type ConfigAttribute
 boolean SecureChannelProcessor.supports(ConfigAttribute attribute)
           
 boolean InsecureChannelProcessor.supports(ConfigAttribute attribute)
           
 boolean ChannelProcessor.supports(ConfigAttribute attribute)
          Indicates whether this ChannelProcessor is able to process the passed ConfigAttribute.
 boolean ChannelDecisionManagerImpl.supports(ConfigAttribute attribute)
           
 boolean ChannelDecisionManager.supports(ConfigAttribute attribute)
          Indicates whether this ChannelDecisionManager is able to process the passed ConfigAttribute.
 

Uses of ConfigAttribute in org.springframework.security.vote
 

Methods in org.springframework.security.vote with parameters of type ConfigAttribute
 boolean AclEntryVoter.supports(ConfigAttribute attribute)
           
 boolean RoleVoter.supports(ConfigAttribute attribute)
           
 boolean LabelBasedAclVoter.supports(ConfigAttribute attribute)
          Deprecated. This acl voter will only evaluate labeled methods if they are marked in the security interceptor's configuration with the attribute stored in attributeIndicatingLabeledOperation.
 boolean BasicAclEntryVoter.supports(ConfigAttribute attribute)
          Deprecated.  
 boolean AuthenticatedVoter.supports(ConfigAttribute attribute)
           
 boolean AccessDecisionVoter.supports(ConfigAttribute attribute)
          Indicates whether this AccessDecisionVoter is able to vote on the passed ConfigAttribute.
 boolean AbstractAccessDecisionManager.supports(ConfigAttribute attribute)
           
 


Spring Security Framework

Copyright © 2004-2010 SpringSource, Inc. All Rights Reserved.