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