bck
Alejandro Acuña
2024-11-11 f1cb4443aede6d4657bdc3396c8914d3a9f4fa93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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");
    }
 
}