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