View Javadoc
1   package ca.uhn.hl7v2.hoh.api;
2   
3   /**
4    * Provides a callback for authorizing credentials found within HTTP requests
5    */
6   public interface IAuthorizationServerCallback {
7   
8   	/**
9   	 * Returns true if the username and password are accepted as valid for a given URI
10  	 */
11  	boolean authorize(String theUriPath, String theUsername, String thePassword);
12  	
13  }