- /*
- * Copyright 2002-2004 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.springframework.context.support;
- import java.util.Locale;
- import org.springframework.context.MessageSource;
- import org.springframework.context.MessageSourceResolvable;
- import org.springframework.context.NoSuchMessageException;
- /**
- * Helper class for easy access to messages from a MessageSource,
- * providing various overloaded getMessage methods.
- *
- * <p>Available from ApplicationObjectSupport, but also reusable
- * as a standalone helper to delegate to in application objects.
- *
- * @author Juergen Hoeller
- * @since 23.10.2003
- * @see ApplicationObjectSupport#getMessageSourceAccessor
- */
- public class MessageSourceAccessor {
- private final MessageSource messageSource;
- private final Locale defaultLocale;
- /**
- * Create a new MessageSourceAccessor, using the system Locale
- * as default Locale.
- * @param messageSource the MessageSource to wrap
- */
- public MessageSourceAccessor(MessageSource messageSource) {
- this.messageSource = messageSource;
- this.defaultLocale = Locale.getDefault();
- }
- /**
- * Create a new MessageSourceAccessor, using the given default locale.
- * @param messageSource the MessageSource to wrap
- * @param defaultLocale the default locale to use for message access
- */
- public MessageSourceAccessor(MessageSource messageSource, Locale defaultLocale) {
- this.messageSource = messageSource;
- this.defaultLocale = defaultLocale;
- }
- /**
- * Retrieve the message for the given code and the default Locale.
- * @param code code of the message
- * @param defaultMessage String to return if the lookup fails
- * @return the message
- */
- public String getMessage(String code, String defaultMessage) {
- return this.messageSource.getMessage(code, null, defaultMessage, this.defaultLocale);
- }
- /**
- * Retrieve the message for the given code and the given Locale.
- * @param code code of the message
- * @param defaultMessage String to return if the lookup fails
- * @param locale Locale in which to do lookup
- * @return the message
- */
- public String getMessage(String code, String defaultMessage, Locale locale) {
- return this.messageSource.getMessage(code, null, defaultMessage, locale);
- }
- /**
- * Retrieve the message for the given code and the default Locale.
- * @param code code of the message
- * @param args arguments for the message, or null if none
- * @param defaultMessage String to return if the lookup fails
- * @return the message
- */
- public String getMessage(String code, Object[] args, String defaultMessage) {
- return this.messageSource.getMessage(code, args, defaultMessage, this.defaultLocale);
- }
- /**
- * Retrieve the message for the given code and the given Locale.
- * @param code code of the message
- * @param args arguments for the message, or null if none
- * @param defaultMessage String to return if the lookup fails
- * @param locale Locale in which to do lookup
- * @return the message
- */
- public String getMessage(String code, Object[] args, String defaultMessage, Locale locale) {
- return this.messageSource.getMessage(code, args, defaultMessage, locale);
- }
- /**
- * Retrieve the message for the given code and the default Locale.
- * @param code code of the message
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(String code) throws NoSuchMessageException {
- return this.messageSource.getMessage(code, null, this.defaultLocale);
- }
- /**
- * Retrieve the message for the given code and the given Locale.
- * @param code code of the message
- * @param locale Locale in which to do lookup
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(String code, Locale locale) throws NoSuchMessageException {
- return this.messageSource.getMessage(code, null, locale);
- }
- /**
- * Retrieve the message for the given code and the default Locale.
- * @param code code of the message
- * @param args arguments for the message, or null if none
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(String code, Object[] args) throws NoSuchMessageException {
- return this.messageSource.getMessage(code, args, this.defaultLocale);
- }
- /**
- * Retrieve the message for the given code and the given Locale.
- * @param code code of the message
- * @param args arguments for the message, or null if none
- * @param locale Locale in which to do lookup
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(String code, Object[] args, Locale locale) throws NoSuchMessageException {
- return this.messageSource.getMessage(code, args, locale);
- }
- /**
- * Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance)
- * in the default Locale.
- * @param resolvable the MessageSourceResolvable
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(MessageSourceResolvable resolvable) throws NoSuchMessageException {
- return this.messageSource.getMessage(resolvable, this.defaultLocale);
- }
- /**
- * Retrieve the given MessageSourceResolvable (e.g. an ObjectError instance)
- * in the given Locale.
- * @param resolvable the MessageSourceResolvable
- * @param locale Locale in which to do lookup
- * @return the message
- * @throws org.springframework.context.NoSuchMessageException if not found
- */
- public String getMessage(MessageSourceResolvable resolvable, Locale locale) throws NoSuchMessageException {
- return this.messageSource.getMessage(resolvable, locale);
- }
- }