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.boot.bind.PropertiesConfigurationFactory.java

/**
 * Validate some {@link Properties} (or optionally {@link PropertySources}) by binding
 * them to an object of a specified type and then optionally running a {@link Validator}
 * over it.
 *
 * @param <T> The target type

From source file org.springframework.boot.bind.YamlConfigurationFactory.java

/**
 * Validate some YAML by binding it to an object of a specified type and then optionally
 * running a {@link Validator} over it.
 *
 * @param <T> the configuration type
 * @author Luke Taylor

From source file org.springframework.richclient.factory.DefaultComponentFactory.java

/**
 * Default component factory implementation that delegates to JGoodies component
 * factory.
 *
 * @author Keith Donald
 */

From source file org.springframework.security.access.intercept.AbstractSecurityInterceptor.java

/**
 * Abstract class that implements security interception for secure objects.
 * <p>
 * The <code>AbstractSecurityInterceptor</code> will ensure the proper startup
 * configuration of the security interceptor. It will also implement the proper handling
 * of secure object invocations, namely:

From source file org.springframework.security.access.vote.AbstractAccessDecisionManager.java

/**
 * Abstract implementation of {@link AccessDecisionManager}.
 *
 * <p>
 * Handles configuration of a bean context defined list of {@link AccessDecisionVoter}s
 * and the access control behaviour if all voters abstain from voting (defaults to deny

From source file org.springframework.security.acls.afterinvocation.AclEntryAfterInvocationProvider.java

/**
 * Given a domain object instance returned from a secure object invocation, ensures the
 * principal has appropriate permission as defined by the {@link AclService}.
 * <p>
 * The <code>AclService</code> is used to retrieve the access control list (ACL)
 * permissions associated with a domain object instance for the current

From source file org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.java

/**
 * A base {@link AuthenticationProvider} that allows subclasses to override and work with
 * {@link org.springframework.security.core.userdetails.UserDetails} objects. The class is
 * designed to respond to {@link UsernamePasswordAuthenticationToken} authentication
 * requests.
 *

From source file org.springframework.security.authentication.ProviderManager.java

/**
 * Iterates an {@link Authentication} request through a list of
 * {@link AuthenticationProvider}s.
 *
 * <p>
 * <tt>AuthenticationProvider</tt>s are usually tried in order until one provides a

From source file org.springframework.security.cas.authentication.CasAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that integrates with JA-SIG Central
 * Authentication Service (CAS).
 * <p>
 * This <code>AuthenticationProvider</code> is capable of validating
 * {@link UsernamePasswordAuthenticationToken} requests which contain a

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

/**
 * Base class for the standard {@code LdapAuthenticationProvider} and the
 * {@code ActiveDirectoryLdapAuthenticationProvider}.
 *
 * @author Luke Taylor
 * @since 3.1