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

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

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

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

/**
 * 401 Unauthorized
 */
public class Unauthorized extends Result {
    
    String realm;
    
    public Unauthorized(String realm) {
        super(realm);
        this.realm = realm;
    }

    public void apply(Request request, Response response) {
        response.status = Http.StatusCode.UNAUTHORIZED;
        response.setHeader("WWW-Authenticate", "Basic realm=\"" + realm + "\"");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy