001package ca.uhn.hl7v2.hoh.api; 002 003/** 004 * Provides a callback for authorizing credentials found within HTTP requests 005 */ 006public interface IAuthorizationServerCallback { 007 008 /** 009 * Returns true if the username and password are accepted as valid for a given URI 010 */ 011 boolean authorize(String theUriPath, String theUsername, String thePassword); 012 013}