package art.servers.sosserver.controller;
|
|
import art.library.interop.InteropParameters;
|
import art.library.interop.serialization.SerializationException;
|
import art.library.model.devices.DeviceAction;
|
import art.library.model.devices.sos.Sos;
|
import art.servers.ServerException;
|
|
|
public class ControllerSos extends art.servers.controller.ControllerDevice
|
{
|
protected Sos device = null;
|
|
public ControllerSos(Sos sos)
|
{
|
super(sos);
|
this.device = sos;
|
}
|
|
|
public Sos getSos()
|
{
|
return device;
|
}
|
|
|
public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException, SerializationException, Exception
|
{
|
throw new SerializationException ("Not supported");
|
}
|
|
}
|