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

com.satori.composer.templates.IJtTransform Maven / Gradle / Ivy

There is a newer version: 0.1.7
Show newest version
package com.satori.composer.templates;

import com.fasterxml.jackson.databind.*;
import freemarker.template.*;

public interface IJtTransform {
  T transform(TemplateModel ctx) throws Exception;
  
  default T transform(JsonNode ctx) throws Exception {
    return transform(JtModel.wrap(ctx));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy