Package org.opennms.netmgt.poller
Interface MonitoredService
-
- All Known Subinterfaces:
PollerRequest
- All Known Implementing Classes:
MockMonitoredService
,MockService
,PollableService
,PollerRequestDTO
,SimpleMonitoredService
public interface MonitoredService
MonitoredService interface.
- Version:
- $Id: $
- Author:
- ranger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InetAddress
getAddress()
Returns theInetAddress
associated with the serviceString
getIpAddr()
Returns the ipAddr string associated with this monitored service.int
getNodeId()
Returns the nodeId of the node that this service is associated with.String
getNodeLabel()
Returns the label of the node that this service is associated with.String
getNodeLocation()
Returns the name of the location of the node that this service is associated with.String
getSvcName()
Returns the svcName associated with this monitored service.
-
-
-
Method Detail
-
getSvcName
String getSvcName()
Returns the svcName associated with this monitored service.- Returns:
- the svcName
-
getIpAddr
String getIpAddr()
Returns the ipAddr string associated with this monitored service.- Returns:
- the ipAddr string
-
getNodeId
int getNodeId()
Returns the nodeId of the node that this service is associated with.- Returns:
- the nodeid
-
getNodeLabel
String getNodeLabel()
Returns the label of the node that this service is associated with.- Returns:
- the nodelabel
-
getNodeLocation
String getNodeLocation()
Returns the name of the location of the node that this service is associated with.- Returns:
- the nodelocation
-
getAddress
InetAddress getAddress()
Returns theInetAddress
associated with the service- Returns:
- the
InetAddress
-
-