Alejandro Acuña
2024-12-18 44b33e24b644459038edd956cfce7345ce3236c1
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
package art.servers.asfserver.controller;
 
import art.library.interop.InteropParameters;
import art.library.interop.serialization.SerializationException;
import art.library.model.devices.DeviceAction;
import art.library.model.devices.vms.asf.Asf;
import art.servers.ServerException;
 
 
public class ControllerAsf extends art.servers.controller.ControllerDevice
{
    protected Asf device = null;
 
    public static final int MAX_FAILURES = 5;
 
    public ControllerAsf(Asf asf)
    {
        super(asf);
        this.device = asf;
    }
 
 
    public Asf getAsf()
    {
        return device;
    }
 
 
    public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException, SerializationException, Exception
    {
        throw new SerializationException ("Not supported");
    }
}