ucSAMLUpdateRedirectURL is called during the sign on process when SAML is enabled. It allows for the modification of the redirectURL used after a successful SAML assertion.
The Sign On screen
public String ucSAMLUpdateRedirectURL(
HttpServletRequest request,
HttpServletResponse response,
String redirectURL) throws Exception {
return redirectURL;
}
In this example, user is redirected to the extraview.com website, after a successful sign on via SAML.
public String ucSAMLUpdateRedirectURL(
HttpServletRequest request,
HttpServletResponse response,
String redirectURL) throws Exception {
return "https://www.extraview.com/";
}