Policy.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
3863N/A<%--
3863N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3863N/A
3863N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
3863N/A
3863N/A The contents of this file are subject to the terms
3863N/A of the Common Development and Distribution License
3863N/A (the License). You may not use this file except in
3863N/A compliance with the License.
3863N/A
3863N/A You can obtain a copy of the License at
3863N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
3863N/A opensso/legal/CDDLv1.0.txt
3863N/A See the License for the specific language governing
3863N/A permission and limitations under the License.
3863N/A
3863N/A When distributing Covered Code, include this CDDL
3863N/A Header Notice in each file and include the License file
3863N/A at opensso/legal/CDDLv1.0.txt.
3863N/A If applicable, add the following below the CDDL Header,
3863N/A with the fields enclosed by brackets [] replaced by
3863N/A your own identifying information:
3863N/A "Portions Copyrighted [year] [name of copyright owner]"
3863N/A
3863N/A $Id: Policy.jsp,v 1.5 2008/09/04 00:04:21 asyhuang Exp $
3863N/A
3863N/A--%>
3863N/A
3863N/A
3863N/A
3863N/A
3863N/A<%@ page info="Policy" language="java" %>
3863N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
3863N/A<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
3863N/A<jato:useViewBean
3863N/A className="com.sun.identity.console.policy.PolicyViewBean"
3863N/A fireChildDisplayEvents="true" >
3863N/A
3863N/A<cc:i18nbundle baseName="amConsole" id="amConsole"
3863N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
3863N/A
3863N/A<cc:header name="hdrCommon" pageTitle="webconsole.title" bundleID="amConsole" copyrightYear="2004" fireDisplayEvents="true">
3863N/A
3863N/A<script language="javascript" src="../console/js/am.js"></script>
3863N/A<script language="javascript">
3863N/A function switchView(selectElmName) {
3863N/A var frm = document.forms[0];
3863N/A frm.elements['jato.defaultCommand'].value = "/btnShowMenu";
3863N/A frm.submit();
3863N/A }
3863N/A</script>
3863N/A
3863N/A<cc:form name="Policy" method="post" defaultCommandChild="/btnSearch">
3863N/A<jato:hidden name="szCache" />
3863N/A<script language="javascript">
3863N/A function confirmLogout() {
3863N/A return confirm("<cc:text name="txtLogout" defaultValue="masthead.logoutMessage" bundleID="amConsole"/>");
3863N/A }
3863N/A</script>
3863N/A<cc:primarymasthead name="mhCommon" bundleID="amConsole" logoutOnClick="return confirmLogout();"/>
3863N/A<cc:breadcrumbs name="breadCrumb" bundleID="amConsole" />
3863N/A<cc:tabs name="tabCommon" bundleID="amConsole" />
3863N/A
3863N/A<table border="0" cellpadding="10" cellspacing="0" width="100%">
3863N/A <tr>
3863N/A <td>
3863N/A <cc:alertinline name="ialertCommon" bundleID="amConsole" />
3863N/A </td>
3863N/A </tr>
3863N/A</table>
3863N/A
3863N/A<table border="0" cellpadding="0" cellspacing="0" width="100%">
3863N/A <tr>
3863N/A <td>
3863N/A <cc:breadcrumbs name="parentagepath" bundleID="amConsole" />
3863N/A <div class="BcmWhtDiv">
3863N/A <cc:text name="txtRoot" bundleID="amConsole" />
3863N/A </div>
3863N/A </td>
3863N/A </tr>
3863N/A</table>
3863N/A
3863N/A<%-- PAGE CONTENT --%>
3863N/A<cc:pagetitle
3863N/A name="pgtitle"
3863N/A bundleID="amConsole"
3863N/A pageTitleText="page.title.policy"
3863N/A showPageTitleSeparator="true"
3863N/A viewMenuLabel=""
3863N/A pageTitleHelpMessage=""
3863N/A showPageButtonsTop="true"
3863N/A showPageButtonsBottom="false" />
3863N/A
3863N/A<cc:spacer name="spacer" height="10" newline="true" />
3863N/A
3863N/A<table border="0" cellpadding="0" cellspacing="0">
3863N/A <tr>
3863N/A <td><cc:spacer name="spacer" height="1" width="10" newline="false" /></td>
3863N/A <td><cc:label name ="lblFilter" elementName="tfFilter" /><cc:textfield name="tfFilter" defaultValue="*" onKeyDown="if (event.keyCode == 13) { document.forms['Policy'].submit(); return false;}" /></td>
3863N/A <td><cc:spacer name="spacer" height="1" width="3" newline="false" /></td>
3863N/A <td><cc:button name="btnSearch" bundleID="amConsole" defaultValue="button.search" type="primary" onClick="document.forms['Policy'].submit();" /></td>
3863N/A </tr>
3863N/A</table>
3863N/A
3863N/A<cc:spacer name="spacer" height="10" newline="true" />
3863N/A
3863N/A<cc:actiontable
3863N/A name="tblSearch"
3863N/A title="table.policy.title.name"
3863N/A bundleID="amConsole"
3863N/A summary="table.policy.summary"
3863N/A empty="table.policy.empty.message"
3863N/A selectionType="multiple"
3863N/A showAdvancedSortingIcon="false"
3863N/A showLowerActions="false"
3863N/A showPaginationControls="true"
3863N/A showPaginationIcon="true"
3863N/A showSelectionIcons="true"
3863N/A selectionJavascript="toggleTblButtonState('Policy', 'Policy.tblSearch', 'tblButton', 'Policy.tblButtonDelete', this)"
3863N/A showSelectionSortIcon="false"
3863N/A showSortingRow="false" />
3863N/A</cc:form>
3863N/A
3863N/A</cc:header>
3863N/A</jato:useViewBean>
3863N/A
3863N/A