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