RHSSO-274: "Undefined" as auth flow execution
This commit is contained in:
parent
450b57c76a
commit
d90a708ceb
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ public class HttpBasicAuthenticator implements AuthenticatorFactory {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDisplayType() {
|
public String getDisplayType() {
|
||||||
return null;
|
return "HTTP Basic Authentication";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -68,7 +68,7 @@ public class HttpBasicAuthenticator implements AuthenticatorFactory {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getHelpText() {
|
public String getHelpText() {
|
||||||
return null;
|
return "Validates username and password from Authorization HTTP header";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -145,7 +145,7 @@ public class ProvidersTest extends AbstractAuthenticationTest {
|
||||||
"Validates the password supplied as a 'password' form parameter in direct grant request");
|
"Validates the password supplied as a 'password' form parameter in direct grant request");
|
||||||
addProviderInfo(result, "direct-grant-validate-username", "Username Validation",
|
addProviderInfo(result, "direct-grant-validate-username", "Username Validation",
|
||||||
"Validates the username supplied as a 'username' form parameter in direct grant request");
|
"Validates the username supplied as a 'username' form parameter in direct grant request");
|
||||||
addProviderInfo(result, "http-basic-authenticator", null, null);
|
addProviderInfo(result, "http-basic-authenticator", "HTTP Basic Authentication", "Validates username and password from Authorization HTTP header");
|
||||||
addProviderInfo(result, "idp-confirm-link", "Confirm link existing account", "Show the form where user confirms if he wants " +
|
addProviderInfo(result, "idp-confirm-link", "Confirm link existing account", "Show the form where user confirms if he wants " +
|
||||||
"to link identity provider with existing account or rather edit user profile data retrieved from identity provider to avoid conflict");
|
"to link identity provider with existing account or rather edit user profile data retrieved from identity provider to avoid conflict");
|
||||||
addProviderInfo(result, "idp-create-user-if-unique", "Create User If Unique", "Detect if there is existing Keycloak account " +
|
addProviderInfo(result, "idp-create-user-if-unique", "Create User If Unique", "Detect if there is existing Keycloak account " +
|
||||||
|
|
Loading…
Reference in a new issue