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
package art.servers.rtzserver.controller;
 
import art.library.interop.InteropParameters;
import art.library.interop.serialization.SerializationException;
import art.library.model.devices.Device;
import art.library.model.devices.DeviceAction;
import art.servers.ServerException;
import art.servers.controller.ControllerDevice;
 
 
 
 
public class Controller extends ControllerDevice
{
    
    public Controller (Device device)
    {
        super(device);
    }
    
    
 
    
    public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException, SerializationException, Exception
    {
        throw new SerializationException ("Not supported");
    }
    
    
}