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

io.imunity.console.utils.WebConsoleUtilsMessageAreaProvider Maven / Gradle / Ivy

/*
 * Copyright (c) 2020 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package io.imunity.console.utils;

import org.springframework.stereotype.Component;
import pl.edu.icm.unity.base.message.MessageArea;
import pl.edu.icm.unity.base.message.MessageAreaProvider;

@Component
public class WebConsoleUtilsMessageAreaProvider implements MessageAreaProvider
{
	public final String NAME = "webconsoleutils";

	@Override
	public MessageArea getMessageArea()
	{
		return new MessageArea(NAME, "WebConsoleUtilsMessageAreaProvider.displayedName", false);
	}

	@Override
	public String getName()
	{
		return NAME;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy