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

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

There is a newer version: 2.5.1
Show newest version
package ca.uhn.hl7v2.hoh.api;

/**
 * Provides callback methods for providing credentials
 */
public interface IAuthorizationClientCallback {

	/**
 	 * Provides a username
	 * 
	 * @param theUriPath
	 * @return
	 */
	String provideUsername(String theUriPath);
	
	/**
	 * Provides a password
	 * 
	 * @param theUriPath
	 * @return
	 */
	String providePassword(String theUriPath);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy