validatorStatus.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
0N/A<%--
2362N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2008 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
0N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
0N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
2362N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
0N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: validatorStatus.jsp,v 1.3 2009/01/05 23:23:25 veiming Exp $
0N/A
0N/A--%>
0N/A
0N/A<%@ page contentType="text/html; charset=utf-8" language="java" %>
0N/A
0N/A<html>
0N/A<head>
<script language="Javascript">
<%
String step = request.getParameter("s");
String status = request.getParameter("v");
if (step != null) {
if (step.equals("idpauth")) {
if (status.equals("1")) {
out.println("top.authIdpPassed()");
} else {
out.println("top.authIdpFailed()");
}
} else if (step.equals("spauth")) {
if (status.equals("1")) {
out.println("top.authSpPassed()");
} else {
out.println("top.authSpFailed()");
}
} else if (step.equals("acclink")) {
if (status.equals("1")) {
out.println("top.accLinkPassed()");
}
} else if (step.equals("slo")) {
if (status.equals("1")) {
out.println("top.singleLogoutPassed()");
}
} else if (step.equals("sso")) {
if (status.equals("1")) {
out.println("top.singleLoginPassed()");
}
} else if (step.equals("accTerm")) {
if (status.equals("1")) {
out.println("top.accTermPassed()");
}
}
}
%>
</script>
</head>
</html>