org.netxms.client.objects.interfaces.NodeItemPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netxms-client Show documentation
Show all versions of netxms-client Show documentation
NetXMS client library - complete JAVA API
package org.netxms.client.objects.interfaces;
public interface NodeItemPair
{
/**
* Get node ID
* @return node id
*/
public long getNodeId();
/**
* Get DCI id
* @return dci id
*/
public long getDciId();
}