<%-- * Copyright (c) 2004, 2005, Oracle. All rights reserved. * * NAME * groupStorageHistory.jsp * * DESCRIPTION * Has the UI contents of the group 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 08/09/05 - Fix bug# 4222327 * ajere 07/19/05 - Fix bug# 4493757 * ajere 07/14/05 - Fix bug# 4429794 * ajere 05/26/05 - Accessibility changes * rmenon 03/23/05 - * rmenon 03/15/05 - * rmenon 02/25/05 - * rmenon 02/18/05 - remove debug messages * rmenon 01/03/05 - * rmenon 12/03/04 - * rmenon 11/11/04 - * rmenon 10/15/04 - * rmenon 10/09/04 - rmenon_storage_group_ui_and_sql_code_refactor * rmenon 10/04/04 - * 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.ServiceUtil' %> <%@ page import='oracle.sysman.eml.ecm.ui.SimpleDataObjectList' %> <%@ page import='oracle.sysman.eml.storage.common.StorageUIConstants' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryMgmtLayerViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistorySummaryViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryDisksViewBean' %> <%@ page import='oracle.sysman.eml.storage.common.StorageHistoryApplicationsViewBean' %> <%@ page import='oracle.sysman.eml.storage.group.GroupStorageHistoryViewBean' %> <%@ 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. --%> <% GroupStorageHistoryViewBean historyViewBean = (GroupStorageHistoryViewBean) request.getAttribute( "historyViewBean" ); String selectedHistoryType = historyViewBean.getSelectedHistoryType(); String storageHistoryEnabled = historyViewBean.getStorageHistoryEnabledFlag(); Object confirmationMessage = request.getAttribute( StorageUIConstants.CONFIRM_MESSAGE_TABLE_KEY ); %> <%@ include file="/oemGlobal.jspf" %> <% if( StorageUIConstants.NO.equals( storageHistoryEnabled ) && confirmationMessage == null ) { %> <%}%> <% 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="groupStorageHistorySummary.jspf" %> <% } else if ( StorageUIConstants.DB.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryDatabases.jspf" %> <%} else if ( StorageUIConstants.LOCAL_FS.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryLocalFS.jspf" %> <%} else if ( StorageUIConstants.WRITEABLE_NFS.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryNFS.jspf" %> <%} else if ( StorageUIConstants.DISKS.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryDisks.jspf" %> <%} else if ( StorageUIConstants.ASM.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryAsm.jspf" %> <%} else if ( StorageUIConstants.VOLUMES.equals( selectedHistoryType ) ) { %> <%@ include file="groupStorageHistoryVolumes.jspf" %> <%} else { %> <%}%>