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");
|
}
|
|
|
}
|