com.github.nagyesta.lowkeyvault.template.HandlebarsTemplateProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowkey-vault-app Show documentation
Show all versions of lowkey-vault-app Show documentation
Assembled application of Lowkey Vault.
package com.github.nagyesta.lowkeyvault.template;
import java.io.IOException;
/**
* Interface for processing Handlebars templates.
*
* @param The context object.
*/
public interface HandlebarsTemplateProcessor {
String processTemplate(String templateAsString, T context) throws IOException;
}