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