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

pl.edu.icm.unity.engine.notifications.MessageTemplateParams Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */
package pl.edu.icm.unity.engine.notifications;

import java.util.Collections;
import java.util.Map;

/**
 * Template id, and its parameters  
 */
public class MessageTemplateParams
{
	public final String templateId;
	public final Map parameters;

	public MessageTemplateParams(String templateId, Map parameters)
	{
		this.templateId = templateId;
		this.parameters = Collections.unmodifiableMap(parameters);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy