validateWait.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
908f1e1388f616898b4e515d343c0414f2a6472esd<%--
908f1e1388f616898b4e515d343c0414f2a6472esd DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd Copyright (c) 2008 Sun Microsystems Inc. All Rights Reserved
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd The contents of this file are subject to the terms
908f1e1388f616898b4e515d343c0414f2a6472esd of the Common Development and Distribution License
908f1e1388f616898b4e515d343c0414f2a6472esd (the License). You may not use this file except in
908f1e1388f616898b4e515d343c0414f2a6472esd compliance with the License.
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd You can obtain a copy of the License at
908f1e1388f616898b4e515d343c0414f2a6472esd https://opensso.dev.java.net/public/CDDLv1.0.html or
908f1e1388f616898b4e515d343c0414f2a6472esd opensso/legal/CDDLv1.0.txt
908f1e1388f616898b4e515d343c0414f2a6472esd See the License for the specific language governing
908f1e1388f616898b4e515d343c0414f2a6472esd permission and limitations under the License.
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd When distributing Covered Code, include this CDDL
908f1e1388f616898b4e515d343c0414f2a6472esd Header Notice in each file and include the License file
908f1e1388f616898b4e515d343c0414f2a6472esd at opensso/legal/CDDLv1.0.txt.
908f1e1388f616898b4e515d343c0414f2a6472esd If applicable, add the following below the CDDL Header,
908f1e1388f616898b4e515d343c0414f2a6472esd with the fields enclosed by brackets [] replaced by
908f1e1388f616898b4e515d343c0414f2a6472esd your own identifying information:
fc33347812f84907261f6fd501e2409da108b8d8Tom Pothier "Portions Copyrighted [year] [name of copyright owner]"
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd $Id: validateWait.jsp,v 1.5 2009/01/05 23:23:24 veiming Exp $
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd--%>
908f1e1388f616898b4e515d343c0414f2a6472esd<%--
908f1e1388f616898b4e515d343c0414f2a6472esd Portions Copyrighted 2012 ForgeRock AS
908f1e1388f616898b4e515d343c0414f2a6472esd--%>
908f1e1388f616898b4e515d343c0414f2a6472esd
3f1e69bef33050bee99ea1e9992af13fc467281fCheng Sean Ye<%@ page import="com.sun.identity.common.SystemConfigurationUtil" %>
fc33347812f84907261f6fd501e2409da108b8d8Tom Pothier<%@ page import="com.sun.identity.shared.Constants" %>
fc33347812f84907261f6fd501e2409da108b8d8Tom Pothier<%@ page import="com.sun.identity.workflow.ValidateSAML2" %>
908f1e1388f616898b4e515d343c0414f2a6472esd<%@ page import="org.owasp.esapi.ESAPI" %>
908f1e1388f616898b4e515d343c0414f2a6472esd<%@ page contentType="text/html; charset=utf-8" language="java" %>
908f1e1388f616898b4e515d343c0414f2a6472esd
908f1e1388f616898b4e515d343c0414f2a6472esd<%
908f1e1388f616898b4e515d343c0414f2a6472esd String deployuri = SystemConfigurationUtil.getProperty(
908f1e1388f616898b4e515d343c0414f2a6472esd Constants.AM_SERVICES_DEPLOYMENT_DESCRIPTOR);
908f1e1388f616898b4e515d343c0414f2a6472esd String msg = request.getParameter("m");
908f1e1388f616898b4e515d343c0414f2a6472esd String locale = request.getParameter("locale");
908f1e1388f616898b4e515d343c0414f2a6472esd String message = ValidateSAML2.getMessage(msg, locale);
908f1e1388f616898b4e515d343c0414f2a6472esd%>
<html>
<head>
<link rel="stylesheet" type="text/css" href="<%= deployuri %>/com_sun_web_ui/css/css_ns6up.css" />
<link rel="shortcut icon" href="<%= deployuri %>/com_sun_web_ui/images/favicon/favicon.ico" type="image/x-icon"></link>
<link rel="stylesheet" type="text/css" href="<%= deployuri %>/console/css/opensso.css" />
<script language="JavaScript">
</script>
</head>
<body class="DefBdy">
<div><img src="<%= deployuri %>/com_sun_web_ui/images/other/dot.gif" alt="" border="0" height="120" width="1" /></div>
<center><img src="<%= deployuri %>/console/images/processing.gif" alt="" border="0" height="66" width="66" />
<p>&nbsp;</p>
<span class="ProgressText" id="message"><%= ESAPI.encoder().encodeForHTML(message) %></span>
</center>
</body>
</html>