1 package ca.uhn.hl7v2.hoh.api; 2 3 /** 4 * Provides callback methods for providing credentials 5 */ 6 public interface IAuthorizationClientCallback { 7 8 /** 9 * Provides a username 10 * 11 * @param theUriPath 12 * @return 13 */ 14 String provideUsername(String theUriPath); 15 16 /** 17 * Provides a password 18 * 19 * @param theUriPath 20 * @return 21 */ 22 String providePassword(String theUriPath); 23 24 }