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