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

io.zenwave360.generator.templating.TemplateOutput Maven / Gradle / Ivy

package io.zenwave360.generator.templating;

public class TemplateOutput {

    private String targetFile;
    private String content;

    private String mimeType;

    public TemplateOutput(String targetFile, String content) {
        this.targetFile = targetFile;
        this.content = content;
    }

    public TemplateOutput(String targetFile, String content, String mimeType) {
        this.targetFile = targetFile;
        this.content = content;
        this.mimeType = mimeType;
    }

    public String getTargetFile() {
        return targetFile;
    }

    public String getContent() {
        return content;
    }

    public String getMimeType() {
        return mimeType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy