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

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

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

import play.mvc.Http.Request;
import play.mvc.Http.Response;

public class Status extends Result {

    int code;

    public Status(int code) {
        super(code+"");
        this.code = code;
    }

    public void apply(Request request, Response response) {
        response.status = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy