Brief update: Looking at the netxms-client sources it seems that there is no setThreshods() method for DataCollectionItem. I think something like this needs to be added to org/netxms/client/datacollection/DataCollectionItem.java:
Is that correct?
Code Select
/**
* @param thresholds the thresholds to set
*/
public void setThresholds(ArrayList<Threshold> thresholds)
{
this.thresholds = thresholds;
}
Is that correct?