Add device list method and chgange getDevice by Id method return type to device

revert-dabc3590
manoj 10 years ago
parent f16c1b47e2
commit aa2448dd0a

@ -33,6 +33,8 @@ public interface DeviceDAO {
void deleteDevice(Long deviceId) throws DeviceManagementDAOException;
List<Device> getDeviceByDeviceId(Long deviceId) throws DeviceManagementDAOException;
Device getDeviceByDeviceId(Long deviceId) throws DeviceManagementDAOException;
List<Device> getDevices() throws DeviceManagementDAOException;
}

Loading…
Cancel
Save