362363364365366367368
/** * Send a 401 Unauthorized response * @param realm The realm name */ protected static void unauthorized(String realm) { throw new Unauthorized(realm); }
369370371372373374375
/** * Send a 401 Unauthorized response */ protected static void unauthorized() { throw new Unauthorized("Unauthorized"); }
363364365366367368369
370371372373374375376
376377378379380381382
383384385386387388389