mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add null and empty check for device location related values
This commit is contained in:
parent
7072052381
commit
354dcd3fd4
@ -3271,7 +3271,9 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
distance = p.getValue();
|
||||
}
|
||||
}
|
||||
if (latitude != null && longitude != null && !latitude.isEmpty() && !longitude.isEmpty()) {
|
||||
if (StringUtils.isNotBlank(latitude) && StringUtils.isNotBlank(longitude) &&
|
||||
StringUtils.isNotBlank(altitude) && StringUtils.isNotBlank(speed) &&
|
||||
StringUtils.isNotBlank(bearing) && StringUtils.isNotBlank(distance)) {
|
||||
DeviceLocation deviceLocation = new DeviceLocation();
|
||||
deviceLocation.setDeviceId(device.getId());
|
||||
deviceLocation.setDeviceIdentifier(new DeviceIdentifier(device.getDeviceIdentifier(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user