This repository has been archived by the owner on Oct 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch plugin to use external authn flow
- Loading branch information
Showing
5 changed files
with
17 additions
and
141 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
gradleVersion=4.5 | ||
|
||
version=3.2.4 | ||
version=3.3.0 | ||
|
||
casClientVersion=3.5.1 | ||
casClientVersion=3.6.0 | ||
commonLangVersion=2.5 | ||
junitVersion=4.12 | ||
mockitoVersion=1.9.5 | ||
powermockVersion=1.6.1 | ||
servletVersion=3.0.1 | ||
shibIdpVersion=3.3.0 | ||
shibIdpVersion=3.4.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
* @author [email protected] | ||
* @author aremmes (GitHub) | ||
*/ | ||
@WebServlet(name = "ShibcasAuthServlet", urlPatterns = {"/Authn/ExtCas/*"}) | ||
@WebServlet(name = "ShibcasAuthServlet", urlPatterns = {"/Authn/External/*"}) | ||
public class ShibcasAuthServlet extends HttpServlet { | ||
private final Logger logger = LoggerFactory.getLogger(ShibcasAuthServlet.class); | ||
private static final long serialVersionUID = 1L; | ||
|
@@ -140,7 +140,7 @@ protected void startLoginRequest(final HttpServletRequest request, final HttpSer | |
* Uses the CAS CommonUtils to build the CAS Redirect URL. | ||
*/ | ||
private String constructRedirectUrl(final String serviceUrl, final boolean renew, final boolean gateway) { | ||
return CommonUtils.constructRedirectUrl(casLoginUrl, "service", serviceUrl, renew, gateway); | ||
return CommonUtils.constructRedirectUrl(casLoginUrl, "service", serviceUrl, renew, gateway, null); | ||
} | ||
|
||
/** | ||
|