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