From 5a763d2a53e2e9c39330b08c0f04ccede0ee29b2 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Wed, 14 Jun 2017 21:21:54 -0400 Subject: [PATCH] GUACAMOLE-323: Provide login help text during CAS redirect. --- .../guacamole/auth/cas/AuthenticationProviderService.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/AuthenticationProviderService.java b/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/AuthenticationProviderService.java index 43435fedb..edd89dce8 100644 --- a/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/AuthenticationProviderService.java +++ b/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/AuthenticationProviderService.java @@ -29,6 +29,7 @@ import org.apache.guacamole.GuacamoleException; import org.apache.guacamole.form.Field; import org.apache.guacamole.net.auth.Credentials; import org.apache.guacamole.net.auth.credentials.CredentialsInfo; +import org.apache.guacamole.net.auth.credentials.GuacamoleInsufficientCredentialsException; import org.apache.guacamole.net.auth.credentials.GuacamoleInvalidCredentialsException; import org.apache.guacamole.auth.cas.conf.ConfigurationService; import org.apache.guacamole.auth.cas.form.CASTicketField; @@ -89,7 +90,8 @@ public class AuthenticationProviderService { } // Request CAS ticket - throw new GuacamoleInvalidCredentialsException("Invalid login.", + throw new GuacamoleInsufficientCredentialsException( + "Please wait, redirecting to CAS authentication.", new CredentialsInfo(Arrays.asList(new Field[] { // CAS-specific ticket (will automatically redirect the user