All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.common.msg.Message Maven / Gradle / Ivy

/*
 * Copyright 2013 serso aka se.solovyev
 *
 * 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.
 *
 * ---------------------------------------------------------------------
 * Contact details
 *
 * Email: [email protected]
 * Site:  http://se.solovyev.org
 */

package org.solovyev.common.msg;

import javax.annotation.Nonnull;
import java.util.List;
import java.util.Locale;

/**
 * User: serso
 * Date: Mar 29, 2010
 * Time: 10:45:56 PM
 */

/**
 * Interface represents translatable user message.
 * Implementation of this class will likely contains
 * some logic for translation message according to
 * it's message code and list of parameters.
 */
public interface Message {

	/**
	 * @return message code
	 */
	@Nonnull
	public String getMessageCode();

	/**
	 * @return list of message parameters
	 */
	@Nonnull
	public List getParameters();

	/**
	 * @return message level
	 */
	@Nonnull
	public MessageLevel getMessageLevel();

	/**
	 * @param locale locate to which current message should be translated
	 * @return message string translated to specified locale
	 */
	@Nonnull
	public String getLocalizedMessage(@Nonnull Locale locale);

	/**
	 * @return message string translated to deault locale (Locale.getDefault())
	 */
	@Nonnull
	public String getLocalizedMessage();
}