mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixing the null pointer
This commit is contained in:
parent
239a27f5b0
commit
3e42cf426f
@ -36,7 +36,7 @@ import java.util.List;
|
|||||||
* Implements CRUD for Devices. This holds the generic implementation. An instance of this will be created for
|
* Implements CRUD for Devices. This holds the generic implementation. An instance of this will be created for
|
||||||
* each device type.
|
* each device type.
|
||||||
*/
|
*/
|
||||||
public class DeviceTypePluginDAOImpl implements PluginDAO{
|
public class DeviceTypePluginDAOImpl implements PluginDAO {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(DeviceTypePluginDAOImpl.class);
|
private static final Log log = LogFactory.getLog(DeviceTypePluginDAOImpl.class);
|
||||||
private DeviceTypeDAOHandler deviceTypeDAOHandler;
|
private DeviceTypeDAOHandler deviceTypeDAOHandler;
|
||||||
@ -241,11 +241,13 @@ public class DeviceTypePluginDAOImpl implements PluginDAO{
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String getPropertString(List<Device.Property> properties, String propertyName) {
|
private String getPropertString(List<Device.Property> properties, String propertyName) {
|
||||||
|
if (properties != null) {
|
||||||
for (Device.Property property : properties) {
|
for (Device.Property property : properties) {
|
||||||
if (property.getName() != null && property.getName().equals(propertyName)) {
|
if (property.getName() != null && property.getName().equals(propertyName)) {
|
||||||
return property.getValue();
|
return property.getValue();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user