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