@Test(expected = IllegalArgumentException.class)
 public void testPasswordExceptionIfNull() {
   jerseyProxyBuilder.authenticationCredentials("", null);
 }
 @Test(expected = IllegalArgumentException.class)
 public void testUsernameExceptionIfNull() {
   jerseyProxyBuilder.authenticationCredentials(null, "");
 }