mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
refactored code issues
This commit is contained in:
parent
c06617d762
commit
f35c3d084a
@ -111,7 +111,6 @@ public class WindowsDAOFactory extends MobileDeviceManagementDAOFactory
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void closeConnection() {
|
public static void closeConnection() {
|
||||||
|
|
||||||
Connection con = currentConnection.get();
|
Connection con = currentConnection.get();
|
||||||
try {
|
try {
|
||||||
con.close();
|
con.close();
|
||||||
@ -134,7 +133,6 @@ public class WindowsDAOFactory extends MobileDeviceManagementDAOFactory
|
|||||||
}
|
}
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
log.warn("Error occurred while roll-backing the transaction", e);
|
log.warn("Error occurred while roll-backing the transaction", e);
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
closeConnection();
|
closeConnection();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -26,7 +26,6 @@ import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil;
|
|||||||
import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice;
|
import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice;
|
||||||
import org.wso2.carbon.device.mgt.mobile.impl.windows.dao.WindowsDAOFactory;
|
import org.wso2.carbon.device.mgt.mobile.impl.windows.dao.WindowsDAOFactory;
|
||||||
import org.wso2.carbon.device.mgt.mobile.impl.windows.util.WindowsPluginConstants;
|
import org.wso2.carbon.device.mgt.mobile.impl.windows.util.WindowsPluginConstants;
|
||||||
import org.wso2.carbon.device.mgt.mobile.impl.windows.util.WindowsUtils;
|
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.PreparedStatement;
|
import java.sql.PreparedStatement;
|
||||||
@ -50,7 +49,6 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
MobileDevice mobileDevice = null;
|
MobileDevice mobileDevice = null;
|
||||||
List<MobileDevice> mobileDevices = new ArrayList<MobileDevice>();
|
|
||||||
try {
|
try {
|
||||||
conn = WindowsDAOFactory.getConnection();
|
conn = WindowsDAOFactory.getConnection();
|
||||||
String selectDBQuery =
|
String selectDBQuery =
|
||||||
@ -76,8 +74,6 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO));
|
propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO));
|
||||||
propertyMap.put(WindowsPluginConstants.DEVICE_NAME, rs.getString(WindowsPluginConstants.DEVICE_NAME));
|
propertyMap.put(WindowsPluginConstants.DEVICE_NAME, rs.getString(WindowsPluginConstants.DEVICE_NAME));
|
||||||
mobileDevice.setDeviceProperties(propertyMap);
|
mobileDevice.setDeviceProperties(propertyMap);
|
||||||
|
|
||||||
mobileDevices.add(mobileDevice);
|
|
||||||
}
|
}
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("All Windows device details have fetched from Windows database.");
|
log.debug("All Windows device details have fetched from Windows database.");
|
||||||
@ -87,14 +83,13 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
throw new MobileDeviceManagementDAOException("Error occurred while fetching all Windows device data", e);
|
throw new MobileDeviceManagementDAOException("Error occurred while fetching all Windows device data", e);
|
||||||
} finally {
|
} finally {
|
||||||
MobileDeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
MobileDeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||||
WindowsDAOFactory.closeConnection();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean addMobileDevice(MobileDevice mobileDevice) throws MobileDeviceManagementDAOException {
|
public boolean addMobileDevice(MobileDevice mobileDevice) throws MobileDeviceManagementDAOException {
|
||||||
boolean status = false;
|
boolean status = false;
|
||||||
Connection conn = null;
|
Connection conn;
|
||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
try {
|
try {
|
||||||
conn = WindowsDAOFactory.getConnection();
|
conn = WindowsDAOFactory.getConnection();
|
||||||
@ -106,14 +101,9 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
stmt = conn.prepareStatement(createDBQuery);
|
stmt = conn.prepareStatement(createDBQuery);
|
||||||
stmt.setString(1, mobileDevice.getMobileDeviceId());
|
stmt.setString(1, mobileDevice.getMobileDeviceId());
|
||||||
|
|
||||||
if (mobileDevice.getDeviceProperties() == null) {
|
Map<String, String> properties = mobileDevice.getDeviceProperties();
|
||||||
mobileDevice.setDeviceProperties(new HashMap<String, String>());
|
stmt.setString(2, properties.get(WindowsPluginConstants.CHANNEL_URI));
|
||||||
}
|
stmt.setString(3, properties.get(WindowsPluginConstants.DEVICE_INFO));
|
||||||
|
|
||||||
stmt.setString(2, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.CHANNEL_URI));
|
|
||||||
stmt.setString(3, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.DEVICE_INFO));
|
|
||||||
stmt.setString(4, mobileDevice.getImei());
|
stmt.setString(4, mobileDevice.getImei());
|
||||||
stmt.setString(5, mobileDevice.getImsi());
|
stmt.setString(5, mobileDevice.getImsi());
|
||||||
stmt.setString(6, mobileDevice.getOsVersion());
|
stmt.setString(6, mobileDevice.getOsVersion());
|
||||||
@ -122,10 +112,8 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
stmt.setString(9, mobileDevice.getLatitude());
|
stmt.setString(9, mobileDevice.getLatitude());
|
||||||
stmt.setString(10, mobileDevice.getLongitude());
|
stmt.setString(10, mobileDevice.getLongitude());
|
||||||
stmt.setString(11, mobileDevice.getSerial());
|
stmt.setString(11, mobileDevice.getSerial());
|
||||||
stmt.setString(12, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
stmt.setString(12, properties.get(WindowsPluginConstants.MAC_ADDRESS));
|
||||||
WindowsPluginConstants.MAC_ADDRESS));
|
stmt.setString(13, properties.get(WindowsPluginConstants.DEVICE_NAME));
|
||||||
stmt.setString(13, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.DEVICE_NAME));
|
|
||||||
int rows = stmt.executeUpdate();
|
int rows = stmt.executeUpdate();
|
||||||
if (rows > 0) {
|
if (rows > 0) {
|
||||||
status = true;
|
status = true;
|
||||||
@ -141,7 +129,6 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
MobileDeviceManagementDAOUtil.cleanupResources(stmt, null);
|
MobileDeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -158,15 +145,9 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
|
|
||||||
stmt = conn.prepareStatement(updateDBQuery);
|
stmt = conn.prepareStatement(updateDBQuery);
|
||||||
|
|
||||||
if (mobileDevice.getDeviceProperties() == null) {
|
Map<String, String> properties = mobileDevice.getDeviceProperties();
|
||||||
mobileDevice.setDeviceProperties(new HashMap<String, String>());
|
stmt.setString(1, properties.get(WindowsPluginConstants.CHANNEL_URI));
|
||||||
}
|
stmt.setString(2, properties.get(WindowsPluginConstants.DEVICE_INFO));
|
||||||
|
|
||||||
stmt.setString(1, WindowsUtils.getDeviceProperty(
|
|
||||||
mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.CHANNEL_URI));
|
|
||||||
stmt.setString(2, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.DEVICE_INFO));
|
|
||||||
stmt.setString(3, mobileDevice.getImei());
|
stmt.setString(3, mobileDevice.getImei());
|
||||||
stmt.setString(4, mobileDevice.getImsi());
|
stmt.setString(4, mobileDevice.getImsi());
|
||||||
stmt.setString(5, mobileDevice.getOsVersion());
|
stmt.setString(5, mobileDevice.getOsVersion());
|
||||||
@ -175,10 +156,8 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
stmt.setString(8, mobileDevice.getLatitude());
|
stmt.setString(8, mobileDevice.getLatitude());
|
||||||
stmt.setString(9, mobileDevice.getLongitude());
|
stmt.setString(9, mobileDevice.getLongitude());
|
||||||
stmt.setString(10, mobileDevice.getSerial());
|
stmt.setString(10, mobileDevice.getSerial());
|
||||||
stmt.setString(11, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
stmt.setString(11, properties.get(WindowsPluginConstants.MAC_ADDRESS));
|
||||||
WindowsPluginConstants.MAC_ADDRESS));
|
stmt.setString(12, properties.get(WindowsPluginConstants.DEVICE_NAME));
|
||||||
stmt.setString(12, WindowsUtils.getDeviceProperty(mobileDevice.getDeviceProperties(),
|
|
||||||
WindowsPluginConstants.DEVICE_NAME));
|
|
||||||
stmt.setString(13, mobileDevice.getMobileDeviceId());
|
stmt.setString(13, mobileDevice.getMobileDeviceId());
|
||||||
int rows = stmt.executeUpdate();
|
int rows = stmt.executeUpdate();
|
||||||
if (rows > 0) {
|
if (rows > 0) {
|
||||||
@ -204,8 +183,7 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
try {
|
try {
|
||||||
conn = WindowsDAOFactory.getConnection();
|
conn = WindowsDAOFactory.getConnection();
|
||||||
String deleteDBQuery =
|
String deleteDBQuery = "DELETE FROM WINDOWS_DEVICE WHERE MOBILE_DEVICE_ID = ?";
|
||||||
"DELETE FROM WINDOWS_DEVICE WHERE MOBILE_DEVICE_ID = ?";
|
|
||||||
stmt = conn.prepareStatement(deleteDBQuery);
|
stmt = conn.prepareStatement(deleteDBQuery);
|
||||||
stmt.setString(1, mblDeviceId);
|
stmt.setString(1, mblDeviceId);
|
||||||
int rows = stmt.executeUpdate();
|
int rows = stmt.executeUpdate();
|
||||||
@ -256,7 +234,6 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO));
|
propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO));
|
||||||
propertyMap.put(WindowsPluginConstants.DEVICE_NAME, rs.getString(WindowsPluginConstants.DEVICE_NAME));
|
propertyMap.put(WindowsPluginConstants.DEVICE_NAME, rs.getString(WindowsPluginConstants.DEVICE_NAME));
|
||||||
mobileDevice.setDeviceProperties(propertyMap);
|
mobileDevice.setDeviceProperties(propertyMap);
|
||||||
|
|
||||||
mobileDevices.add(mobileDevice);
|
mobileDevices.add(mobileDevice);
|
||||||
}
|
}
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
@ -267,7 +244,6 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO {
|
|||||||
throw new MobileDeviceManagementDAOException("Error occurred while fetching all Windows device data", e);
|
throw new MobileDeviceManagementDAOException("Error occurred while fetching all Windows device data", e);
|
||||||
} finally {
|
} finally {
|
||||||
MobileDeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
MobileDeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||||
WindowsDAOFactory.closeConnection();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user