blob: 1e8005e087e73cb45bbaa463e0c0989fb1c81001 [file] [log] [blame]
<!--
Copyright (c) 2010, 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
-->
<!-- standalone/standaloneInstanceTabs.inc -->
<sun:tabSet id="standaloneInstanceTabs" immediate="$boolean{true}" selected="#{sessionScope.standaloneInstanceTabs}">
<sun:tab id="general" immediate="$boolean{true}" text="$resource{i18nc.GeneralTab}" >
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="general");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneInstanceGeneral.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
</sun:tab>
<sun:tab id="standaloneApps" immediate="$boolean{true}" text="$resource{i18ncs.cluster.ApplicationsTab}">
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="standaloneApps");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneApplications.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
</sun:tab>
<sun:tab id="resources" immediate="$boolean{true}" text="$resource{i18nc.resources}" >
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="resources");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneInstanceResources.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
</sun:tab>
<sun:tab id="standaloneProp" immediate="$boolean{true}" text="$resource{i18nc.PropertiesTab}">
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="configProps");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneInstanceConfigProperties.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
<sun:tab id="configProps" immediate="$boolean{true}" text="$resource{i18n.inst.tab.ConfigProperties}" >
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="configProps");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneInstanceConfigProperties.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
</sun:tab>
<sun:tab id="instanceProps" immediate="$boolean{true}" text="$resource{i18n.inst.tab.InstanceProperties}" >
<!command
setSessionAttribute(key="standaloneInstanceTabs" value="instanceProps");
gf.redirect(page="#{request.contextPath}/cluster/standalone/standaloneInstanceProperties.jsf?instanceName=#{pageSession.encodedInstanceName}");
/>
</sun:tab>
</sun:tab>
</sun:tabSet>
<event>
<!afterCreate
includeIntegrations(type="org.glassfish.admingui:standaloneInstTab");
/>
</event>