dropwizard/dropwizard

View on GitHub
dropwizard-views-freemarker/src/test/java/io/dropwizard/views/freemarker/AutoEscapingView.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.dropwizard.views.freemarker;

import io.dropwizard.views.View;

public class AutoEscapingView extends View {
    private final String content;

    protected AutoEscapingView(String content) {
        super("/auto-escaping.ftl");
        this.content = content;
    }

    public String getContent() {
        return content;
    }
}