bunti/src/main/java/de/ctdo/bunti/dao/BuntiDevicesDAO.java

18 lines
352 B
Java
Raw Normal View History

2012-03-02 21:09:43 +00:00
package de.ctdo.bunti.dao;
import java.util.Collection;
import java.util.List;
2012-03-02 21:09:43 +00:00
import de.ctdo.bunti.model.*;
public interface BuntiDevicesDAO {
List<BuntiDevice> getAllDevices();
List<BuntiDMXDevice> getAllDMXDevices();
2012-03-04 00:21:00 +00:00
BuntiDevice getDeviceById(int deviceId);
2012-03-06 23:41:56 +00:00
void addDevice(BuntiDevice device);
void removeDevice(int deviceId);
2012-03-06 23:41:56 +00:00
2012-03-02 21:09:43 +00:00
}