mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Implement DeleteDeviceLocation method for deleting location from a device
This commit is contained in:
parent
cebc3bf5d4
commit
b58b8c931b
@ -80,6 +80,8 @@ public interface DeviceInformationManager {
|
|||||||
|
|
||||||
void addDeviceLocation(Device device, DeviceLocation deviceLocation) throws DeviceDetailsMgtException;
|
void addDeviceLocation(Device device, DeviceLocation deviceLocation) throws DeviceDetailsMgtException;
|
||||||
|
|
||||||
|
void deleteDeviceLocation(Device device) throws DeviceDetailsMgtException;
|
||||||
|
|
||||||
void addDeviceLocations(Device device, List<DeviceLocation> deviceLocations) throws
|
void addDeviceLocations(Device device, List<DeviceLocation> deviceLocations) throws
|
||||||
DeviceDetailsMgtException;
|
DeviceDetailsMgtException;
|
||||||
|
|
||||||
|
|||||||
@ -53,7 +53,6 @@ import java.util.Calendar;
|
|||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
|
|
||||||
public class DeviceInformationManagerImpl implements DeviceInformationManager {
|
public class DeviceInformationManagerImpl implements DeviceInformationManager {
|
||||||
|
|
||||||
@ -417,6 +416,29 @@ public class DeviceInformationManagerImpl implements DeviceInformationManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void deleteDeviceLocation(Device device) throws DeviceDetailsMgtException {
|
||||||
|
try {
|
||||||
|
DeviceManagementDAOFactory.beginTransaction();
|
||||||
|
DeviceLocation deviceLocation = deviceDetailsDAO.getDeviceLocation(device.getId(),
|
||||||
|
device.getEnrolmentInfo().getId());
|
||||||
|
if (deviceLocation != null) {
|
||||||
|
deviceDetailsDAO.deleteDeviceLocation(device.getId(), device.getEnrolmentInfo().getId());
|
||||||
|
} else {
|
||||||
|
throw new DeviceDetailsMgtException("Device location not found.");
|
||||||
|
}
|
||||||
|
DeviceManagementDAOFactory.commitTransaction();
|
||||||
|
} catch (TransactionManagementException e) {
|
||||||
|
throw new DeviceDetailsMgtException("Transactional error occurred while deleting the device location " + "information.", e);
|
||||||
|
} catch (DeviceDetailsMgtDAOException e) {
|
||||||
|
DeviceManagementDAOFactory.rollbackTransaction();
|
||||||
|
throw new DeviceDetailsMgtException("Error occurred while deleting the device location information.", e);
|
||||||
|
} finally {
|
||||||
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void addDeviceLocations(Device device, List<DeviceLocation> deviceLocations) throws DeviceDetailsMgtException {
|
public void addDeviceLocations(Device device, List<DeviceLocation> deviceLocations) throws DeviceDetailsMgtException {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user