df
Alejandro Acuña
2024-09-16 f56295b7f2c7282783589fb4903529b09e161daa
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
package art.servers.bannerserver.controller;
 
import art.library.interop.InteropParameters;
import art.library.model.devices.DeviceAction;
import art.library.model.devices.vms.banner.Banner;
import art.servers.ServerException;
import art.servers.controller.ControllerDevice;
 
 
public class ControllerBanner extends ControllerDevice
{
    public ControllerBanner(Banner device)
    {
        super(device);
    }
    
    public DeviceAction[] sendCommands(InteropParameters parameters) throws ServerException
    {
        throw new ServerException("Not implemented yet");
    }
    
    
    
    
    
}