11 lines
362 B
Java
11 lines
362 B
Java
package com.honeywell.ascot.factory;
|
|
|
|
import com.honeywell.ascot.device.IAscotDevice;
|
|
import com.honeywell.ascot.onlineOperations.monitoring.IMonitoringHandler;
|
|
|
|
public interface IDeviceNetworkInterfaceFactory {
|
|
IMonitoringHandler getMonitoringHandler(IAscotDevice iAscotDevice) throws Exception;
|
|
|
|
NetworkInterfaceFactory getNetworkInterfaceFactory();
|
|
}
|