mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix Permanent delete for multiple enrollments
This commit is contained in:
parent
1abc701f20
commit
e80589d3b1
@ -533,10 +533,10 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
try {
|
||||
DeviceManagementDAOFactory.beginTransaction();
|
||||
existingDevices = deviceDAO.getDevicesByIdentifiers(deviceIdentifiers, tenantId);
|
||||
if (existingDevices.size() != deviceIdentifiers.size()) {
|
||||
for (Device device : existingDevices) {
|
||||
deviceIdentifiers.remove(device.getDeviceIdentifier());
|
||||
}
|
||||
for (Device device : existingDevices) {
|
||||
deviceIdentifiers.remove(device.getDeviceIdentifier());
|
||||
}
|
||||
if (!deviceIdentifiers.isEmpty()) {
|
||||
String msg =
|
||||
"Couldn't find device ids for all the requested device identifiers. " +
|
||||
"Therefore payload should contain device identifiers which are not in the system. " +
|
||||
|
||||
Loading…
Reference in New Issue
Block a user