<%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag/db" prefix="db" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem" %> <%@ page import="oracle.sysman.emo.dist.streams.StreamsStatusInfo" %> <%@ page import="oracle.sysman.emo.ha.HABean" %> <% HABean haBean = ((HABean)(request.getAttribute("HABean"))); if (haBean != null && haBean.getShowStreamsStatus()) { %> <%-- Begin Streams Status --%> <%-- This section should be identical to /database/dist/streams/streamsHomeInclude.jspf (except for the spacing) --%> <% StreamsStatusInfo infoBean= (StreamsStatusInfo) request.getAttribute("streamsStatus"); if (infoBean != null) { %> <% if (infoBean.getCritCompCount() > 0) { %> <% } if (infoBean.getWarnCompCount() > 0) { %> <% } if (infoBean.getHealthyCompCount() > 0) { %> <% } %> <% } %> <%-- End Streams Status --%> <% } %>