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

20 lines
382 B
Java
Raw Normal View History

2012-03-02 21:09:43 +00:00
package de.ctdo.bunti.dao;
import java.util.List;
2012-03-02 21:09:43 +00:00
import de.ctdo.bunti.model.BuntiDMXDevice;
import de.ctdo.bunti.model.BuntiDevice;
2012-03-02 21:09:43 +00:00
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-05-25 23:56:44 +00:00
2012-03-06 23:41:56 +00:00
2012-03-02 21:09:43 +00:00
}