Example usage for org.springframework.context MessageSourceAware interface-usage

List of usage examples for org.springframework.context MessageSourceAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.context MessageSourceAware interface-usage.

Usage

From source file org.springframework.security.ldap.authentication.LdapAuthenticationProvider.java

/**
 * An {@link org.springframework.security.authentication.AuthenticationProvider} implementation that authenticates
 * against an LDAP server.
 * <p>
 * There are many ways in which an LDAP directory can be configured so this class delegates most of
 * its responsibilities to two separate strategy interfaces, {@link LdapAuthenticator}

From source file org.springframework.security.oauth.consumer.filter.OAuthConsumerContextFilter.java

/**
 * OAuth filter that establishes an OAuth security context.
 *
 * @author Ryan Heaton
 */
public class OAuthConsumerContextFilter implements Filter, InitializingBean, MessageSourceAware {

From source file org.springframework.security.oauth.consumer.filter.OAuthConsumerProcessingFilter.java

/**
 * OAuth consumer processing filter. This filter should be applied to requests for OAuth protected resources (see OAuth Core 1.0).<br/><br/>
 * <p/>
 * When servicing a request that requires protected resources, this filter sets a request attribute (default "OAUTH_ACCESS_TOKENS") that contains
 * the list of {@link org.springframework.security.oauth.consumer.OAuthConsumerToken}s.
 *

From source file org.springframework.security.oauth.consumer.OAuthConsumerProcessingFilter.java

/**
 * OAuth consumer processing filter. This filter should be applied to requests for OAuth protected resources (see OAuth Core 1.0).<br/><br/>
 *
 * When servicing a request that requires protected resources, this filter sets a request attribute (default "OAUTH_ACCESS_TOKENS") that contains
 * the list of {@link org.springframework.security.oauth.consumer.token.OAuthConsumerToken}s.
 *

From source file org.springframework.security.oauth.provider.filter.OAuthProviderProcessingFilter.java

/**
 * OAuth processing filter. This filter should be applied to requests for OAuth protected resources (see OAuth Core 1.0).<br/><br/>
 *
 * @author Ryan Heaton
 */
public abstract class OAuthProviderProcessingFilter implements Filter, InitializingBean, MessageSourceAware {

From source file org.springframework.security.oauth.provider.OAuthProviderProcessingFilter.java

/**
 * OAuth processing filter. This filter should be applied to requests for OAuth protected resources (see OAuth Core 1.0).<br/><br/>
 *
 * @author Ryan Heaton
 */
public abstract class OAuthProviderProcessingFilter

From source file org.springframework.security.oauth2.client.filter.OAuth2ClientProcessingFilter.java

/**
 * OAuth 2 client processing filter. Used to lock down requests (based on standard spring security URL pattern matching) according to the availability of
 * certain OAuth 2 access tokens.<br/><br/>
 * <p/>
 * When servicing a request that requires protected resources, this filter sets a request attribute (default "OAUTH_ACCESS_TOKENS") that contains
 * the list of {@link org.springframework.security.oauth2.common.OAuth2AccessToken}s.

From source file org.springframework.security.web.authentication.www.DigestAuthenticationFilter.java

/**
 * Processes a HTTP request's Digest authorization headers, putting the result into the
 * <code>SecurityContextHolder</code>.
 * <p>
 * For a detailed background on what this filter is designed to process, refer to
 * <a href="https://www.ietf.org/rfc/rfc2617.txt">RFC 2617</a> (which superseded RFC 2069,

From source file org.springframework.ws.soap.security.x509.populator.DaoX509AuthoritiesPopulator.java

/**
 * Populates the X509 authorities via an {@link org.springframework.security.core.userdetails.UserDetailsService}.
 * <p>Migrated from Spring Security 2 since it has been removed in Spring Security 3.</p>
 *
 * @author Luke Taylor
 * @version $Id: DaoX509AuthoritiesPopulator.java 2544 2008-01-29 11:50:33Z luke_t $

From source file org.springframework.ws.soap.security.x509.X509AuthenticationProvider.java

/**
 * Processes an X.509 authentication request.
 * <p>Migrated from Spring Security 2 since it has been removed in Spring Security 3.</p> 
 *
 * @author Luke Taylor
 * @version $Id: X509AuthenticationProvider.java 3256 2008-08-18 18:20:48Z luke_t $