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

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

There is a newer version: 1.0.5
Show newest version
package org.tiogasolutions.app.standard.view.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 - 2024 Weber Informatics LLC | Privacy Policy