<%-- * Copyright (c) 2004, 2005, Oracle. All rights reserved. * * NAME * groupStorageDetails.jsp * * DESCRIPTION * Has the UI contents of the group storage details. * * NOTES * We need to use jsp:include and buildTree to include the * pages - I tried to implement this on june 17th but it did not * work for me for some reason (gave blank page.) * MODIFIED * ajere 06/30/05 - Fix bug# 4215132 * ajere 06/14/05 - Fix bug# 4253169 * ajere 06/07/05 - Fix bug# 4222316 * ajere 06/03/05 - Fix bug# 4215146 * ajere 05/26/05 - Accessibility changes * rmenon 03/17/05 - * rmenon 02/25/05 - * rmenon 02/11/05 - added group ui instruction text. * rmenon 01/05/05 - changing bar width * rmenon 01/03/05 - * rmenon 11/15/04 - * rmenon 11/11/04 - made related errors link "non-bold" * rmenon 11/04/04 - * rmenon 10/11/04 - removed vendor tab * rmenon 10/09/04 - Group history ui and other changes * djoly 10/04/04 - Fix relative paths for includes in same directory * rmenon 09/08/04 - * rmenon 08/24/04 - rmenon_storage_ui * rmenon 08/23/04 - Created --%> <%@ include file="/oemNoscript.jspf" %> <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem" %> <%@ page import='oracle.cabo.ui.UIConstants' %> <%@ page import='oracle.sysman.emSDK.svc.ServiceUtil' %> <%@ page import='oracle.sysman.eml.storage.group.GroupAllocSummaryByHostViewBean' %> <%@ page import='oracle.sysman.eml.storage.group.GroupUsageSummaryByHostViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageUrlUtil' %> <%@ page import='oracle.sysman.eml.ecm.ui.SimpleDataObjectList' %> <%@ page import='oracle.sysman.eml.storage.common.StorageUIConstants' %> <%@ page import='oracle.sysman.eml.storage.common.StorageCommonSectionViewBean' %> <% String refreshJobMessage = null; String relatedErrorsCount = null; int relatedErrorsCountAsInt = 0; Integer selectedTabIndexAsInteger = StorageUrlUtil. getParameterAsIntegerObject( request, StorageUIConstants.SELECTED_TAB_INDEX_KEY ); int selectedTabIndex = selectedTabIndexAsInteger.intValue(); StorageCommonSectionViewBean commonSectionViewBean = (StorageCommonSectionViewBean) request.getAttribute( StorageUIConstants.COMMON_SECTION_VIEW_BEAN_NAME ); if(commonSectionViewBean != null) { refreshJobMessage = commonSectionViewBean.getRefreshJobMessage(); relatedErrorsCount = commonSectionViewBean.getRelatedErrorCount(); if( relatedErrorsCount != null || relatedErrorsCount.length() != 0 ) { relatedErrorsCountAsInt = Integer.parseInt( relatedErrorsCount ); } } %> <%@ include file="/sdk/oemTop.jspf" %> <%-- * resource bundles used by this page. --%> <%@ include file="/enablePPR.jspf" %> <%@ include file="/oemGlobal.jspf" %> <% if(relatedErrorsCountAsInt > 0 ) { %> <%}%> <%-- Utilization Summary Chart --%> <%-- Allocation Summary Chart --%> <%-- Usage Summary Chart --%> <% if( selectedTabIndex == StorageUIConstants.GROUP_ALLOC_SUMMARY_SELECTED_TAB_INDEX ) { %> <%@ include file="groupAllocSummaryByHost.jspf" %> <%} else if( selectedTabIndex == StorageUIConstants.GROUP_USAGE_SUMMARY_SELECTED_TAB_INDEX ) { %> <%@ include file="groupUsageSummaryByHost.jspf" %> <%} else if( selectedTabIndex == StorageUIConstants.GROUP_VENDOR_DIST_SELECTED_TAB_INDEX ) { %> <%@ include file="../common/vendorDistStorage.jspf" %> <%}%>