play.mvc.results.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
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 Status extends Result {
private final int code;
public Status(int code) {
super(code+"");
this.code = code;
}
@Override
public void apply(Request request, Response response, Session session, RenderArgs renderArgs, Flash flash) {
response.status = code;
}
public int getCode() {
return code;
}
@Override
public String toString() {
return String.valueOf(code);
}
}