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