SoapSTSEdit.jsp revision 4cc414596f330cc595f62252d964ef97b3795056
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith<%--
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith Copyright 2015 ForgeRock AS.
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith The contents of this file are subject to the terms of the Common Development and
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith Distribution License (the License). You may not use this file except in compliance with the
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith License.
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith specific language governing permission and limitations under the License.
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith When distributing Covered Code, include this CDDL Header Notice in each file and include
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith Header, with the fields enclosed by brackets [] replaced by your own identifying
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith information: "Portions Copyrighted [year] [name of copyright owner]"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith--%>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith<%@ page info="SCServiceProfile" language="java" %>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith<jato:useViewBean
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith className="com.sun.identity.console.sts.SoapSTSEditViewBean"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith fireChildDisplayEvents="true" >
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:i18nbundle baseName="amConsole" id="amConsole"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:header name="hdrCommon"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith pageTitle="webconsole.title"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith bundleID="amConsole"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith copyrightYear="2005"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith fireDisplayEvents="true">
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <script language="javascript" src="../console/js/am.js"></script>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:form name="SCServiceProfile" method="post" defaultCommandChild="/button1" >
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <jato:hidden name="szCache" />
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <script language="javascript">
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith function confirmLogout() {
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith return confirm("<cc:text name="txtLogout" defaultValue="masthead.logoutMessage" bundleID="amConsole"/>");
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith }
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </script>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:primarymasthead name="mhCommon" bundleID="amConsole" logoutOnClick="return confirmLogout();" locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:breadcrumbs name="breadCrumb" bundleID="amConsole" />
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <table border="0" cellpadding="10" cellspacing="0" width="100%">
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <tr>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <td>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:alertinline name="ialertCommon" bundleID="amConsole" />
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </td>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </tr>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </table>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <%-- PAGE CONTENT --%>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:pagetitle name="pgtitle"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith bundleID="amConsole"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith pageTitleText=""
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith showPageTitleSeparator="true"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith viewMenuLabel=""
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith pageTitleHelpMessage=""
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith showPageButtonsTop="true"
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith showPageButtonsBottom="true" >
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <jato:content name="property">
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith <cc:propertysheet name="propertyAttributes" showJumpLinks="true" bundleID="amConsole" />
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </jato:content>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </cc:pagetitle>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </cc:form>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith </cc:header>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith</jato:useViewBean>
c1bef59b02d89a84c23d29663cc4e6d46148ebd2David Goldsmith