Package org.netxms.client.objects
Class DependentNode
- java.lang.Object
-
- org.netxms.client.objects.DependentNode
-
public final class DependentNode extends Object
Dependent node information
-
-
Field Summary
Fields Modifier and Type Field Description static intAGENT_PROXYstatic intDATA_COLLECTION_SOURCEstatic intICMP_PROXYstatic intSNMP_PROXY
-
Constructor Summary
Constructors Constructor Description DependentNode(org.netxms.base.NXCPMessage msg, long baseId)Create from NXCP message
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetNodeId()Get ID of dependent nodebooleanisAgentProxy()Returns true if original node is an agent proxy for this nodebooleanisDataCollectionSource()Returns true if original node is a data collection source for this nodebooleanisIcmpProxy()Returns true if original node is an ICMP proxy for this nodebooleanisSnmpProxy()Returns true if original node is an SNMP proxy for this node
-
-
-
Field Detail
-
AGENT_PROXY
public static final int AGENT_PROXY
- See Also:
- Constant Field Values
-
SNMP_PROXY
public static final int SNMP_PROXY
- See Also:
- Constant Field Values
-
ICMP_PROXY
public static final int ICMP_PROXY
- See Also:
- Constant Field Values
-
DATA_COLLECTION_SOURCE
public static final int DATA_COLLECTION_SOURCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getNodeId
public long getNodeId()
Get ID of dependent node- Returns:
- ID of dependent node
-
isAgentProxy
public boolean isAgentProxy()
Returns true if original node is an agent proxy for this node- Returns:
- true if original node is an agent proxy for this node
-
isSnmpProxy
public boolean isSnmpProxy()
Returns true if original node is an SNMP proxy for this node- Returns:
- true if original node is an SNMP proxy for this node
-
isIcmpProxy
public boolean isIcmpProxy()
Returns true if original node is an ICMP proxy for this node- Returns:
- true if original node is an ICMP proxy for this node
-
isDataCollectionSource
public boolean isDataCollectionSource()
Returns true if original node is a data collection source for this node- Returns:
- true if original node is a data collection source for this node
-
-