9 lines
238 B
Java
9 lines
238 B
Java
package com.honeywell.ascot.onlineOperations.monitoring;
|
|
|
|
import com.honeywell.ascot.device.IAscotDevice;
|
|
import java.util.List;
|
|
|
|
public interface IMonitoringManager {
|
|
void setMonitoringPoints(IAscotDevice iAscotDevice, List list);
|
|
}
|