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