package de.ctdo.bunti.dao; import java.util.Collection; import java.util.List; import de.ctdo.bunti.model.*; public interface BuntiDevicesDAO { List getAllDevices(); List getAllDMXDevices(); BuntiDevice getDeviceById(int deviceId); void addDevice(BuntiDevice device); void removeDevice(int deviceId); }