removeBasicAuthenticationProfile(AuthType.GLOBAL_HTTP_SETTINGS.toString());
}
public Set<String> getBasicAuthenticationProfiles() {
Set<String> authTypes = new HashSet<String>();
CredentialsConfig credentialsConfig = getConfig().getCredentials();
if (credentialsConfig != null) {
for (String type : credentialsConfig.getAddedBasicAuthenticationTypesList()) {
if (AuthType.PREEMPTIVE.toString().equals(type)
|| AuthType.GLOBAL_HTTP_SETTINGS.toString().equals(type)) {
authTypes.add(BASIC_AUTH_PROFILE);
} else {
authTypes.add(type);