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

fr.sii.ogham.template.thymeleaf.SimpleThymeleafContextConverter Maven / Gradle / Ivy

package fr.sii.ogham.template.thymeleaf;

import fr.sii.ogham.core.exception.template.ContextException;
import fr.sii.ogham.core.template.context.Context;
import fr.sii.ogham.core.template.context.LocaleContext;

/**
 * Simple converter that is able to handle {@link Context} and
 * {@link LocaleContext}.
 * 
 * @author Aurélien Baudet
 *
 */
public class SimpleThymeleafContextConverter implements ThymeleafContextConverter {
	@Override
	public org.thymeleaf.context.Context convert(Context context) throws ContextException {
		org.thymeleaf.context.Context thymeleafContext = new org.thymeleaf.context.Context();
		thymeleafContext.setVariables(context.getVariables());
		if (context instanceof LocaleContext) {
			thymeleafContext.setLocale(((LocaleContext) context).getLocale());
		}
		return thymeleafContext;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy