Package org.opennms.web.svclayer
Interface SiteStatusViewService
-
- All Known Implementing Classes:
DefaultSiteStatusViewService
@Transactional(readOnly=true) public interface SiteStatusViewService
Service layer API for the use cases that require the monitoed status of OpenNMS entities (i.e. OnmsNode) to be aggregated with status information that provides color and numberic indicators of status.- Author:
- David Hustace, DJ Gregor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<AggregateStatus>
createAggregateStatuses(AggregateStatusView statusView)
createAggregateStatusesCollection<AggregateStatus>
createAggregateStatuses(AggregateStatusView statusView, String statusSite)
createAggregateStatusesCollection<AggregateStatus>
createAggregateStatusesUsingNodeId(int nodeId, String viewName)
createAggregateStatusesUsingNodeIdAggregateStatusView
createAggregateStatusView(String statusViewName)
This method returns method returns a collection of aggregated status of nodes for each device category.AggregateStatus
getAggregateStatus(String statusViewName, String statusSite, String rowLabel)
getAggregateStatusCollection<OnmsNode>
getNodes(String statusViewName, String statusSite, String rowLabel)
getNodes
-
-
-
Method Detail
-
createAggregateStatusView
AggregateStatusView createAggregateStatusView(String statusViewName)
This method returns method returns a collection of aggregated status of nodes for each device category. In this case a column in the assets table is used as "site" for which to select devices. The devices are aggregated by the list of categories specified in categoryGrouping.- Parameters:
statusViewName
- aString
object.- Returns:
- a
AggregateStatusView
object.
-
createAggregateStatuses
Collection<AggregateStatus> createAggregateStatuses(AggregateStatusView statusView)
createAggregateStatuses
- Parameters:
statusView
- aAggregateStatusView
object.- Returns:
- a
Collection
object.
-
createAggregateStatuses
Collection<AggregateStatus> createAggregateStatuses(AggregateStatusView statusView, String statusSite)
createAggregateStatuses
- Parameters:
statusView
- aAggregateStatusView
object.statusSite
- aString
object.- Returns:
- a
Collection
object.
-
createAggregateStatusesUsingNodeId
Collection<AggregateStatus> createAggregateStatusesUsingNodeId(int nodeId, String viewName)
createAggregateStatusesUsingNodeId
- Parameters:
nodeId
- a int.viewName
- aString
object.- Returns:
- a
Collection
object.
-
getAggregateStatus
AggregateStatus getAggregateStatus(String statusViewName, String statusSite, String rowLabel)
getAggregateStatus
- Parameters:
statusViewName
- aString
object.statusSite
- aString
object.rowLabel
- aString
object.- Returns:
- a
AggregateStatus
object.
-
getNodes
Collection<OnmsNode> getNodes(String statusViewName, String statusSite, String rowLabel)
getNodes
- Parameters:
statusViewName
- aString
object.statusSite
- aString
object.rowLabel
- aString
object.- Returns:
- a
Collection
object.
-
-