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

io.javalin.rendering.FileRenderer Maven / Gradle / Ivy

The newest version!
/*
 * Javalin - https://javalin.io
 * Copyright 2017 David Åse
 * Licensed under Apache 2.0: https://github.com/tipsy/javalin/blob/master/LICENSE
 */

package io.javalin.rendering;

import io.javalin.Context;
import java.util.Map;
import org.jetbrains.annotations.NotNull;

/**
 * Interface for creating renderers to be used with {@link Context#render}.
 */
@FunctionalInterface
public interface FileRenderer {
    String render(@NotNull String filePath, @NotNull Map model);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy