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

ca.uhn.hl7v2.hoh.api.IAuthorizationServerCallback Maven / Gradle / Ivy

The newest version!
package ca.uhn.hl7v2.hoh.api;

/**
 * Provides a callback for authorizing credentials found within HTTP requests
 */
public interface IAuthorizationServerCallback {

	/**
	 * Returns true if the username and password are accepted as valid for a given URI
	 */
	boolean authorize(String theUriPath, String theUsername, String thePassword);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy