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 net.beachchou.spring.ioc.aware.MessageSourceAwareBean.java

/**
 *
 * @author beach
 */
public class MessageSourceAwareBean implements MessageSourceAware {

From source file org.jasig.cas.util.SpringAwareMessageMessageInterpolator.java

/**
 * Configures the {@link javax.validation.Validator} to check the Spring Messages.
 *
 * @author Scott Battaglia
 * @version $Revision$ $Date$
 * @since 3.4

From source file com.github.javarch.support.MessageSourceAware.java

/**
 * Obtm mensagens de i18n nas diversas camadas da arquitetura.
 * 
 * @author Lucas Oliveira
 *
 */

From source file org.slc.sli.ingestion.validation.spring.SimpleValidatorSpring.java

/**
 * Abstract validator with Spring MessageSource support.
 *
 * @author okrook
 *
 */

From source file net.cit.tetrad.utility.code.Processor.java

public class Processor implements MessageSourceAware {

    private MessageSource messageSource;

    @Override
    public void setMessageSource(MessageSource messageSource) {

From source file org.slc.sli.ingestion.validation.spring.ComplexValidatorSpring.java

/**
 * Abstract validator.
 *
 * @author okrook
 *
 */

From source file com.googlecode.psiprobe.beans.stats.listeners.MemoryPoolMailingListener.java

/**
 *
 * @author Mark Lewis
 */
public class MemoryPoolMailingListener extends FlapListener implements MessageSourceAware, InitializingBean {

From source file net.testdriven.psiprobe.beans.stats.listeners.MemoryPoolMailingListener.java

/**
 *
 * @author Mark Lewis
 */
public class MemoryPoolMailingListener extends FlapListener implements MessageSourceAware, InitializingBean {

From source file nz.co.senanque.localemanagement.MessageSourceAccessorFactory.java

/**
 * 
 * Simple factory to deliver the message source accessor for non-spring objects
 * which cannot be injected. Yes, I do know about Configurable and I also know it doesn't work everywhere/when
 * Sorry about the static, though.
 * 

From source file psiprobe.beans.stats.listeners.MemoryPoolMailingListener.java

/**
 * The listener interface for receiving memoryPoolMailing events. The class that is interested in
 * processing a memoryPoolMailing event implements this interface, and the object created with that
 * class is registered with a component using the component's {@code addMemoryPoolMailingListener}
 * method. When the memoryPoolMailing event occurs, that object's appropriate method is invoked.
 *