ghy
Alejandro Acuña
2025-03-12 26319e4c5bfbee722c15b8e7ccca9b6127bb1cb8
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
33
34
package art.servers.lighting.lightstudsserver.controller;
 
import art.library.interop.InteropParameters;
import art.library.interop.serialization.SerializationException;
import art.library.model.devices.DeviceAction;
import art.library.model.devices.lighting.lightstuds.LightStuds;
import art.servers.ServerException;
 
 
public class ControllerLigthStuds extends art.servers.controller.ControllerDevice
{
    protected LightStuds device = null;
 
 
    public ControllerLigthStuds(LightStuds studs)
    {
        super(studs);
        this.device = studs;
    }
 
 
    public LightStuds getDevice()
    {
        return device;
    }
 
 
    public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException, SerializationException, Exception
    {
        throw new SerializationException ("Not supported");
    }
 
    
}