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

play.mvc.results.RenderStatic Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.mvc.results;

import play.mvc.Http.Request;
import play.mvc.Http.Response;
import play.mvc.Scope.Flash;
import play.mvc.Scope.RenderArgs;
import play.mvc.Scope.Session;

public class RenderStatic extends Result {

    public String file;

    public RenderStatic(String file) {
        this.file = file;
    }

    @Override
    public void apply(Request request, Response response, Session session, RenderArgs renderArgs, Flash flash) {
    }

    @Override
    public String toString() {
        return getClass().getSimpleName() + " " + file;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy