830N/A<%--
830N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
830N/A
830N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
830N/A
830N/A The contents of this file are subject to the terms
830N/A of the Common Development and Distribution License
830N/A (the License). You may not use this file except in
830N/A compliance with the License.
830N/A
830N/A You can obtain a copy of the License at
830N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
830N/A opensso/legal/CDDLv1.0.txt
830N/A See the License for the specific language governing
830N/A permission and limitations under the License.
830N/A
830N/A When distributing Covered Code, include this CDDL
830N/A Header Notice in each file and include the License file
830N/A at opensso/legal/CDDLv1.0.txt.
830N/A If applicable, add the following below the CDDL Header,
2281N/A with the fields enclosed by brackets [] replaced by
830N/A your own identifying information:
839N/A "Portions Copyrighted [year] [name of copyright owner]"
830N/A
830N/A $Id: PMDefaultAuthSchemeConditionEdit.jsp,v 1.4 2010/01/27 10:44:32 si224302 Exp $
1300N/A
1258N/A--%>
830N/A
830N/A
830N/A
830N/A
830N/A<%@ page info="PMDefaultAuthSchemeConditionEdit" language="java" %>
830N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
830N/A<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
830N/A<jato:useViewBean
830N/A className="com.sun.identity.console.policy.PMDefaultAuthSchemeConditionEditViewBean"
1244N/A fireChildDisplayEvents="true">
1244N/A
830N/A <cc:i18nbundle baseName="amConsole" id="amConsole"
1244N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
1244N/A
844N/A<cc:header name="hdrCommon" pageTitle="webconsole.title" bundleID="amConsole" copyrightYear="2004" fireDisplayEvents="true" onUnload="closeWin()">
844N/A
830N/A<script language="javascript">
830N/A var selectWin = null;
830N/A function openSelectWindow() {
830N/A selectWin = window.open('../policy/SelectRealm','selectWindow',
830N/A 'height=500,width=650,top=' +
830N/A ((screen.height-(screen.height/1.618))-(500/2)) +
830N/A ',left=' +
830N/A ((screen.width-650)/2) +
830N/A ',scrollbars,resizable');
830N/A selectWin.focus();
830N/A }
830N/A
830N/A function selectAllElements(frm) {
830N/A var sel = frm.elements['PMDefaultAuthSchemeConditionEdit.AuthScheme'];
844N/A for (var i = 0; i < sel.options.length; i++) {
844N/A sel.options[i].selected = true;
830N/A }
902N/A }
902N/A
854N/A function closeWin() {
854N/A if (selectWin) {
830N/A selectWin.close();
830N/A }
830N/A }
902N/A
854N/A function deleteSelected() {
854N/A var frm = document.forms['PMDefaultAuthSchemeConditionEdit'];
854N/A var sel = frm.elements['PMDefaultAuthSchemeConditionEdit.AuthScheme'];
854N/A for (var i = sel.options.length-1; i >-1; --i) {
854N/A if (sel.options[i].selected) {
854N/A sel.options[i] = null;
865N/A }
1058N/A }
1240N/A }
1300N/A
1444N/A function addOption(label, value) {
2141N/A var o = new Option(label, value);
2300N/A return o;
2300N/A }
854N/A</script>
902N/A
902N/A
902N/A<cc:form name="PMDefaultAuthSchemeConditionEdit" method="post" defaultCommandChild="/btnFilter" onSubmit="selectAllElements(this)">
830N/A<script language="javascript">
830N/A function confirmLogout() {
830N/A return confirm("<cc:text name="txtLogout" defaultValue="masthead.logoutMessage" bundleID="amConsole"/>");
830N/A }
830N/A</script>
830N/A<cc:primarymasthead name="mhCommon" bundleID="amConsole" logoutOnClick="return confirmLogout();" locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
830N/A<cc:breadcrumbs name="breadCrumb" bundleID="amConsole" />
830N/A
830N/A<table border="0" cellpadding="10" cellspacing="0" width="100%">
830N/A <tr>
830N/A <td>
830N/A <cc:alertinline name="ialertCommon" bundleID="amConsole" />
830N/A </td>
830N/A </tr>
830N/A</table>
902N/A
902N/A<%-- PAGE CONTENT --------------------------------------------------------- --%>
902N/A<cc:pagetitle name="pgtitleTwoBtns" bundleID="amConsole" pageTitleText="page.title.policy.condition.edit" showPageTitleSeparator="true" viewMenuLabel="" pageTitleHelpMessage="" showPageButtonsTop="true" showPageButtonsBottom="false" />
830N/A
902N/A<cc:propertysheet name="propertyAttributes" bundleID="amConsole" showJumpLinks="false"/>
830N/A
830N/A</cc:form>
830N/A
830N/A</cc:header>
902N/A</jato:useViewBean>
830N/A