SubjectProxy.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
4134N/A<%--
4134N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4134N/A
4134N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
4134N/A
4134N/A The contents of this file are subject to the terms
4134N/A of the Common Development and Distribution License
4134N/A (the License). You may not use this file except in
4134N/A compliance with the License.
4134N/A
4134N/A You can obtain a copy of the License at
4134N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
4134N/A opensso/legal/CDDLv1.0.txt
4134N/A See the License for the specific language governing
4134N/A permission and limitations under the License.
4134N/A
4134N/A When distributing Covered Code, include this CDDL
4134N/A Header Notice in each file and include the License file
4134N/A at opensso/legal/CDDLv1.0.txt.
4134N/A If applicable, add the following below the CDDL Header,
4134N/A with the fields enclosed by brackets [] replaced by
4134N/A your own identifying information:
4134N/A "Portions Copyrighted [year] [name of copyright owner]"
4134N/A
4158N/A $Id: SubjectProxy.jsp,v 1.2 2008/06/25 05:44:45 qcheng Exp $
5726N/A
4134N/A--%>
4134N/A
4134N/A
5726N/A
5726N/A
4926N/A<%@ page info="SubjectProxy" language="java" %>
4926N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
4926N/A<jato:useViewBean
4134N/A className="com.sun.identity.console.policy.SubjectProxyViewBean"
4134N/A fireChildDisplayEvents="true" >
4134N/A
4134N/A<cc:i18nbundle baseName="amConsole" id="amConsole"
4134N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
4134N/A
4134N/A<html>
4926N/A<script language="javascript">
4609N/A function forward() {
5734N/A var frm = document.forms[0];
4609N/A var jatoFrm = document.forms[1];
4134N/A frm.elements['sbjType'].value =
4134N/A jatoFrm.elements['SubjectProxy.sbjType'].value;
4134N/A frm.elements['sbjName'].value =
5726N/A jatoFrm.elements['SubjectProxy.sbjName'].value;
5726N/A frm.elements['locDN'].value =
4134N/A jatoFrm.elements['SubjectProxy.locDN'].value;
4134N/A frm.elements['cachedID'].value =
4134N/A jatoFrm.elements['SubjectProxy.cachedID'].value;
5734N/A frm.elements['tfOp'].value =
5726N/A jatoFrm.elements['SubjectProxy.tfOp'].value;
5734N/A frm.elements['jato.pageSession'].value =
5734N/A jatoFrm.elements['jato.pageSession'].value;
5734N/A frm.submit();
5734N/A }
5734N/A</script>
5734N/A
5734N/A<body onload="forward();">
5734N/A
5734N/A<form action="<jato:text name="tfURL" />" method="post">
5734N/A<input type="hidden" name="jato.pageSession">
5734N/A<input type="hidden" name="sbjType">
5734N/A<input type="hidden" name="sbjName">
5734N/A<input type="hidden" name="locDN">
5734N/A<input type="hidden" name="cachedID">
5734N/A<input type="hidden" name="tfOp">
5734N/A</form>
5734N/A
5734N/A<jato:form name="SubjectProxy" method="post">
5734N/A<jato:hidden name="sbjType" />
5734N/A<jato:hidden name="sbjName" />
5734N/A<jato:hidden name="locDN" />
5734N/A<jato:hidden name="cachedID" />
5734N/A<jato:hidden name="tfOp" />
5734N/A</jato:form>
5734N/A
5734N/A</body>
5734N/A</html>
5734N/A
5734N/A</jato:useViewBean>
5734N/A