autosubmitaccessrights.jsp revision 0fdab8904a8fe223f6934b878769fe45e7651c60
463N/A<%--
463N/A Copyright 2013 ForgeRock AS.
463N/A
463N/A The contents of this file are subject to the terms of the Common Development and
463N/A Distribution License (the License). You may not use this file except in compliance with the
463N/A License.
463N/A
463N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
463N/A specific language governing permission and limitations under the License.
463N/A
463N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
463N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
463N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
463N/A information: "Portions copyright [year] [name of copyright owner]".
463N/A--%>
463N/A<%@ page contentType="text/html;charset=UTF-8" language="java" %>
463N/A
463N/A<html>
463N/A<head>
463N/A <title>Access rights validated</title>
463N/A</head>
463N/A<body onload="document.forms[0].submit()">
463N/A<form method="post" action="${TARGET_URL}">
463N/A
463N/A <input type="hidden" name="${SAML_MESSAGE_NAME}" value="${SAML_MESSAGE_VALUE}" />
463N/A <%
463N/A String relayStateValue = (String)request.getAttribute("RELAY_STATE_VALUE");
463N/A if (relayStateValue != null && !relayStateValue.isEmpty()) {
463N/A %>
463N/A <input type="hidden" name="${RELAY_STATE_NAME}" value="${RELAY_STATE_VALUE}" />
463N/A <%
463N/A }
493N/A %>
463N/A <noscript>
463N/A <input type="submit" value="${SAML_POST_KEY}" />
463N/A </noscript>
493N/A</form>
463N/A</body>
463N/A</html>