Example usage for org.springframework.context.support ResourceBundleMessageSource subclass-usage

List of usage examples for org.springframework.context.support ResourceBundleMessageSource subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context.support ResourceBundleMessageSource subclass-usage.

Usage

From source file com.blogspot.jmelon.portlet.quiz.context.LiferayFallingBackMessageSource.java

/**
 * A ResourceBundleMessageSource which falls back to Liferay's {@link com.liferay.portal.kernel.language.LanguageUtil LanguateUtil} as a
 * last resort if couldn't resolve message for given key
 * 
 * See the file "LICENSE" for the full license governing this code.
 * @author <a href="jmelon.blogspot.com">Micha Mela</a>

From source file com.sshdemo.common.lang.EwcmsMessageSource.java

public class EwcmsMessageSource extends ResourceBundleMessageSource {

    public EwcmsMessageSource() {
        this.setBasenames(new String[] { "com.ewcms.security.messages", "com.ewcms.publication.messages",
                "com.ewcms.publication.preview.service.article" });
    }

From source file org.sipfoundry.sipxconfig.setting.ModelMessageSource.java

/**
 * Special type of message source that finds it's resource bundle in the same plae where model
 * files are stored.
 */
public class ModelMessageSource extends ResourceBundleMessageSource {
    public ModelMessageSource(File modelFile) {

From source file com.blackducksoftware.core.message.spring.CoreResourceBundleMessageSource.java

/**
 * extension of spring's msg source to allow addition of properties file per module in multiple places of the spring
 * config
 * 
 * @author ydeboeck
 * 

From source file sk.openhouse.web.recaptcha.ReCaptchaMessageSource.java

/**
 *
 * @author pete <p.reisinger@gmail.com>
 */
public class ReCaptchaMessageSource extends ResourceBundleMessageSource {

From source file org.apache.cxf.fediz.spring.SpringFedizMessageSource.java

/**
 * The default <code>MessageSource</code> used by Spring Security.
 * <p>All Spring Security classes requiring messge localization will by default use this class.
 * However, all such classes will also implement <code>MessageSourceAware</code> so that the application context can
 * inject an alternative message source. Therefore this class is only used when the deployment environment has not
 * specified an alternative message source.</p>

From source file griffon.plugins.i18n.ExtendedResourceBundleMessageSource.java

/**
 * @author Andres Almiray
 */
public class ExtendedResourceBundleMessageSource extends ResourceBundleMessageSource {
    private static final Logger LOG = LoggerFactory.getLogger(ExtendedResourceBundleMessageSource.class);
    private boolean resolved;

From source file org.broadleafcommerce.common.util.BLResourceBundleMessageSource.java

/**
 * @deprecated use {@link BroadleafMergeResourceBundleMessageSource} instead
 */
@Deprecated
public class BLResourceBundleMessageSource extends ResourceBundleMessageSource implements InitializingBean {