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

org.tiogasolutions.app.thymeleaf.ThymeleafContent Maven / Gradle / Ivy

package org.tiogasolutions.app.thymeleaf;

import java.util.HashMap;
import java.util.Map;

public class ThymeleafContent {

  private final String view;
  private final Map  variables = new HashMap<>();

  public ThymeleafContent(String view, Object model) {
    this.view = view;
    this.variables.put("it", model);
  }

  public String getView() {
    return view;
  }

  public Map getVariables() {
    return variables;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy