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