| <!-- |
| |
| Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <!-- configuration/threadPoolEdit.jsf --> |
| |
| |
| <!initPage |
| setResourceBundle(key="i18n_web" bundle="org.glassfish.web.admingui.Strings"); |
| setResourceBundle(key="help_web" bundle="org.glassfish.web.admingui.Helplinks"); |
| /> |
| <!composition template="/templates/default.layout" guiTitle="$resource{i18n_web.configuration.threadPoolEditPageTitle}" > |
| <!define name="content"> |
| <event> |
| <!beforeCreate |
| getRequestValue(key="configName" value=>$page{configName} default="server-config"); |
| getRequestValue(key="name" value="#{pageSession.Name}"); |
| getRequestValue(key="cancelTo" value="#{pageSession.cancelTo}" default="configuration/threadPools.jsf"); |
| setPageSessionAttribute(key="parentPage" value="#{request.contextPath}/web/#{pageSession.cancelTo}"); |
| urlencode(value="#{pageSession.Name}" encoding="UTF-8" result="#{pageSession.encodedName}"); |
| urlencode(value="#{pageSession.configName}" encoding="UTF-8" result="#{pageSession.encodedConfigName}"); |
| setPageSessionAttribute(key="selfPage" value="#{request.contextPath}/web/configuration/threadPoolEdit.jsf?name=#{pageSession.encodedName}&cancelTo=#{pageSession.cancelTo}&configName=#{pageSession.encodedConfigName}"); |
| setPageSessionAttribute(key="childType" value="thread-pool"); |
| setPageSessionAttribute(key="parentUrl", value="#{sessionScope.REST_URL}/configs/config/#{pageSession.encodedConfigName}/thread-pools"); |
| setPageSessionAttribute(key="selfUrl", value="#{pageSession.parentUrl}/#{pageSession.childType}/#{pageSession.encodedName}"); |
| setPageSessionAttribute(key="rest-api" value="true"); |
| gf.getEntityAttrs(endpoint="#{pageSession.selfUrl}.json", valueMap="#{pageSession.valueMap}"); |
| //set the following for including buttons.inc |
| setPageSessionAttribute(key="edit" value="#{true}" ); |
| setPageSessionAttribute(key="showDefaultButton" value="#{true}" ); |
| setPageSessionAttribute(key="showCancelButton" value="#{true}" ); |
| setPageSessionAttribute(key="hasPropertySheet" value="#{true}" ); |
| setPageSessionAttribute(key="hasPropertyTable" value="#{false}" ); |
| /> |
| </event> |
| <sun:form id="propertyForm"> |
| #include "/common/shared/alertMsg.inc" |
| |
| <!-- Page Title --> |
| <sun:title id="propertyContentPage" title="$resource{i18n_web.configuration.threadPoolEditPageTitle}" helpText="$resource{i18n_web.configuration.threadPoolEditPageTitleHelp}"> |
| #include "/common/shared/editPageButtons.inc" |
| </sun:title> |
| #include "/web/configuration/threadPoolAttrs.inc" |
| |
| <sun:hidden id="helpKey" value="$resource{help_web.threadPoolEdit}" /> |
| </sun:form> |
| </define> |
| </composition> |