Alejandro Acuña
2024-09-16 adba74e107bcda9e1cb510bc14364b02e781baef
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.pvvserver.controller;
 
import art.library.interop.InteropParameters;
import art.library.interop.serialization.SerializationException;
import art.library.model.devices.DeviceAction;
import art.library.model.devices.vms.pvv.Pvv;
import art.servers.ServerException;
 
 
public class ControllerPvv extends art.servers.controller.ControllerDevice
{
    protected Pvv device = null;
 
    public static final int MAX_FAILURES = 5;
 
    public ControllerPvv(Pvv pvv)
    {
        super(pvv);
        this.device = pvv;
    }
 
 
    public Pvv getPvv()
    {
        return device;
    }
 
 
    public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException, SerializationException, Exception
    {
        throw new SerializationException ("Not supported");
    }
 
}