You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/action/oidc/OpenIdConnectPrepareAuthenticationRequest.java
+14-1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ public class OpenIdConnectPrepareAuthenticationRequest extends ActionRequest {
30
30
* issuer to the UA needs to be redirected for authentication
31
31
*/
32
32
privateStringissuer;
33
+
privateStringloginHint;
33
34
privateStringstate;
34
35
privateStringnonce;
35
36
@@ -49,6 +50,11 @@ public String getIssuer() {
49
50
returnissuer;
50
51
}
51
52
53
+
publicStringgetLoginHint() {
54
+
returnloginHint;
55
+
}
56
+
57
+
52
58
publicvoidsetRealmName(StringrealmName) {
53
59
this.realmName = realmName;
54
60
}
@@ -65,13 +71,18 @@ public void setNonce(String nonce) {
Copy file name to clipboardExpand all lines: x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/action/oidc/TransportOpenIdConnectPrepareAuthenticationAction.java
+5-3
Original file line number
Diff line number
Diff line change
@@ -61,17 +61,19 @@ protected void doExecute(Task task, OpenIdConnectPrepareAuthenticationRequest re
Copy file name to clipboardExpand all lines: x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/authc/oidc/OpenIdConnectRealmTests.java
+30-7
Original file line number
Diff line number
Diff line change
@@ -162,15 +162,15 @@ public void testBuildRelyingPartyConfigWithoutOpenIdScope() {
0 commit comments