/**
* Constructs new instance.
*/
public BasicAuthenticationClient() {
super();
credentials = ImmutableList.of(new Credential(USERNAME_PROP_NAME, "Username for basic authentication.", false),
new Credential(PASSWORD_PROP_NAME, "Password for basic authentication.", true));
}