<%-- * Copyright (c) 2004, 2005, Oracle. All rights reserved. * * NAME * hostStorageHistory.jsp * * DESCRIPTION * Has the UI contents of the host storage history 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 07/19/05 - Fix bug# 4493757 * ajere 07/14/05 - Fix bug# 4429794 * ajere 05/24/05 - Accessibility changes * rmenon 03/23/05 - * rmenon 02/16/05 - * rmenon 02/14/05 - * rmenon 12/09/04 - * rmenon 11/15/04 - * rmenon 11/11/04 - put collection timestamp back. * rmenon 10/15/04 - aligning the "view" period choice to right. * rmenon 10/09/04 - history code consolidation * djoly 10/04/04 - Fix relative paths for includes in same directory * rmenon 08/10/04 - * rmenon 08/02/04 - converted tab to drop down * rmenon 06/28/04 - rmenon_storage_disks_tab_ui * rmenon 06/10/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='java.text.SimpleDateFormat' %> <%@ page import='oracle.sysman.emSDK.svc.cache.CacheManager' %> <%@ page import='oracle.sysman.emSDK.svc.ServiceUtil' %> <%@ page import='oracle.sysman.eml.ecm.ui.SimpleDataObjectList' %> <%@ page import='oracle.sysman.eml.storage.common.StorageUIConstants' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistorySummaryViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryMgmtLayerViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryDisksViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryApplicationsViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryViewBean' %> <%@ page import="oracle.cabo.ui.partial.PartialPageContext"%> <%@ page import="oracle.cabo.ui.partial.PartialPageUtils"%> <%@ page import="oracle.cabo.servlet.ui.partial.PartialPageEventUtils"%> <%@ include file="/sdk/oemTop.jspf" %> <%-- * resource bundles used by this page. --%> <% StorageHistoryViewBean historyViewBean = (StorageHistoryViewBean) request.getAttribute( "historyViewBean" ); String selectedHistoryType = historyViewBean.getSelectedHistoryType(); %> <%@ include file="/oemGlobal.jspf" %> <% if ( StorageUIConstants.SUMMARY.equals( selectedHistoryType ) ) { %> <% } else if ( StorageUIConstants.DB.equals( selectedHistoryType ) ) { %> <%} else if ( StorageUIConstants.LOCAL_FS.equals( selectedHistoryType ) ) { %> <%} else if ( StorageUIConstants.WRITEABLE_NFS.equals( selectedHistoryType ) ) { %> <%} else if ( StorageUIConstants.DISKS.equals( selectedHistoryType ) ) { %> <%} else if ( StorageUIConstants.ASM.equals( selectedHistoryType ) ) { %> <%} else if ( StorageUIConstants.VOLUMES.equals( selectedHistoryType ) ) { %> <%}%> <% if ( StorageUIConstants.SUMMARY.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistorySummary.jspf" %> <% } else if ( StorageUIConstants.DB.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryDatabases.jspf" %> <%} else if ( StorageUIConstants.LOCAL_FS.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryLocalFS.jspf" %> <%} else if ( StorageUIConstants.WRITEABLE_NFS.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryNFS.jspf" %> <%} else if ( StorageUIConstants.DISKS.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryDisks.jspf" %> <%} else if ( StorageUIConstants.ASM.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryAsm.jspf" %> <%} else if ( StorageUIConstants.VOLUMES.equals( selectedHistoryType ) ) { %> <%@ include file="hostStorageHistoryVolumes.jspf" %> <%} else { %> <%}%>