mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Refactored device info
This commit is contained in:
parent
3da5169bbb
commit
e4c64afdd3
@ -192,9 +192,20 @@ public class AndroidDeviceManager implements DeviceMgtService {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
|
||||
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
|
||||
boolean status;
|
||||
Device deviceDB = this.getDevice(deviceIdentifier);
|
||||
// This object holds the current persisted device object
|
||||
MobileDevice mobileDeviceDB = MobileDeviceManagementUtil.convertToMobileDevice(deviceDB);
|
||||
|
||||
// This object holds the newly received device object from response
|
||||
MobileDevice mobileDevice = MobileDeviceManagementUtil.convertToMobileDevice(device);
|
||||
|
||||
// Updating current object features using newer ones
|
||||
mobileDeviceDB.setLatitude(mobileDevice.getLatitude());
|
||||
mobileDeviceDB.setLongitude(mobileDevice.getLongitude());
|
||||
mobileDeviceDB.setDeviceProperties(mobileDevice.getDeviceProperties());
|
||||
|
||||
try {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(
|
||||
@ -202,7 +213,7 @@ public class AndroidDeviceManager implements DeviceMgtService {
|
||||
}
|
||||
AndroidDAOFactory.beginTransaction();
|
||||
status = mobileDeviceManagementDAOFactory.getMobileDeviceDAO()
|
||||
.updateMobileDevice(mobileDevice);
|
||||
.updateMobileDevice(mobileDeviceDB);
|
||||
AndroidDAOFactory.commitTransaction();
|
||||
} catch (MobileDeviceManagementDAOException e) {
|
||||
try {
|
||||
|
||||
@ -123,8 +123,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{
|
||||
mobileDevice.setDeviceProperties(new HashMap<String, String>());
|
||||
}
|
||||
|
||||
stmt.setString(2, AndroidUtils.getDeviceProperty(
|
||||
mobileDevice.getDeviceProperties(),
|
||||
stmt.setString(2, AndroidUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
||||
AndroidPluginConstants.GCM_TOKEN));
|
||||
stmt.setString(3, AndroidUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
||||
AndroidPluginConstants.DEVICE_INFO));
|
||||
@ -135,7 +134,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{
|
||||
AndroidPluginConstants.DEVICE_NAME));
|
||||
stmt.setString(8, mobileDevice.getLongitude());
|
||||
stmt.setString(9, mobileDevice.getLongitude());
|
||||
stmt.setString(10, mobileDevice.getImsi());
|
||||
stmt.setString(10, mobileDevice.getImei());
|
||||
stmt.setString(11, mobileDevice.getImsi());
|
||||
stmt.setString(12, mobileDevice.getOsVersion());
|
||||
stmt.setString(13, mobileDevice.getModel());
|
||||
|
||||
@ -33,7 +33,7 @@ public class AndroidPluginConstants {
|
||||
public static final String LATITUDE = "LATITUDE";
|
||||
public static final String LONGITUDE = "LONGITUDE";
|
||||
public static final String IMEI = "IMEI";
|
||||
public static final String IMSI = "IMEI";
|
||||
public static final String IMSI = "IMSI";
|
||||
public static final String VENDOR = "VENDOR";
|
||||
public static final String OS_VERSION = "OS_VERSION";
|
||||
public static final String MAC_ADDRESS = "MAC_ADDRESS";
|
||||
|
||||
@ -97,7 +97,7 @@ public class WindowsDeviceManager implements DeviceMgtService {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
|
||||
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@ -38,14 +38,14 @@ import java.util.*;
|
||||
public class MobileDeviceManagementUtil {
|
||||
|
||||
private static final Log log = LogFactory.getLog(MobileDeviceManagementUtil.class);
|
||||
private static final String MOBILE_DEVICE_IMEI = "imei";
|
||||
private static final String MOBILE_DEVICE_IMSI = "imsi";
|
||||
private static final String MOBILE_DEVICE_VENDOR = "vendor";
|
||||
private static final String MOBILE_DEVICE_OS_VERSION = "osVersion";
|
||||
private static final String MOBILE_DEVICE_MODEL = "model";
|
||||
private static final String MOBILE_DEVICE_LATITUDE = "latitude";
|
||||
private static final String MOBILE_DEVICE_LONGITUDE = "longitude";
|
||||
private static final String MOBILE_DEVICE_SERIAL = "serial";
|
||||
private static final String MOBILE_DEVICE_IMEI = "IMEI";
|
||||
private static final String MOBILE_DEVICE_IMSI = "IMSI";
|
||||
private static final String MOBILE_DEVICE_VENDOR = "VENDOR";
|
||||
private static final String MOBILE_DEVICE_OS_VERSION = "OS_VERSION";
|
||||
private static final String MOBILE_DEVICE_MODEL = "DEVICE_MODEL";
|
||||
private static final String MOBILE_DEVICE_LATITUDE = "LATITUDE";
|
||||
private static final String MOBILE_DEVICE_LONGITUDE = "LONGITUDE";
|
||||
private static final String MOBILE_DEVICE_SERIAL = "SERIAL";
|
||||
|
||||
public static Document convertToDocument(File file) throws DeviceManagementException {
|
||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user