385386387388389390391
* Send a 401 Unauthorized response * * @param realm The realm name */ protected static void unauthorized(String realm) { throw new Unauthorized(realm); }
392393394395396397398
/** * Send a 401 Unauthorized response */ protected static void unauthorized() { throw new Unauthorized("Unauthorized"); }