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

org.teatrove.teaservlet.assets.Asset Maven / Gradle / Ivy

Go to download

The TeaServlet is a template engine that works with the Tea template language.

The newest version!
package org.teatrove.teaservlet.assets;

import java.io.InputStream;

public class Asset {

    private String path;
    private String mimeType;
    private InputStream input;
    
    public Asset(String path, String mimeType, InputStream input) {
        this.path = path;
        this.mimeType = mimeType;
        this.input = input;
    }
    
    public String getPath() { return this.path; }
    public String getMimeType() { return this.mimeType; }
    public InputStream getInputStream() { return this.input; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy