mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge branch 'master' into 'master'
Fix windows enrollment issue See merge request entgra/carbon-device-mgt-plugins!36
This commit is contained in:
commit
88047e03fa
@ -23,7 +23,7 @@ public class WindowsTokenServiceImpl implements WindowsTokenService {
|
|||||||
WindowsDAOFactory.beginTransaction();
|
WindowsDAOFactory.beginTransaction();
|
||||||
windowsEnrollmentTokenDAO.addCacheToken(entry);
|
windowsEnrollmentTokenDAO.addCacheToken(entry);
|
||||||
WindowsDAOFactory.commitTransaction();
|
WindowsDAOFactory.commitTransaction();
|
||||||
} finally {
|
} finally {
|
||||||
WindowsDAOFactory.closeConnection();
|
WindowsDAOFactory.closeConnection();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -51,7 +51,8 @@ public class WindowsTokenServiceImpl implements WindowsTokenService {
|
|||||||
return cacheEntry;
|
return cacheEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public MobileCacheEntry getCacheTokenFromDeviceId(String deviceId)
|
@Override
|
||||||
|
public MobileCacheEntry getCacheTokenFromDeviceId(String deviceId)
|
||||||
throws MobileDeviceManagementDAOException {
|
throws MobileDeviceManagementDAOException {
|
||||||
MobileCacheEntry cacheEntry = null;
|
MobileCacheEntry cacheEntry = null;
|
||||||
try {
|
try {
|
||||||
|
|||||||
@ -20,8 +20,6 @@ package org.wso2.carbon.device.mgt.mobile.windows.impl.dao;
|
|||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.wso2.carbon.device.mgt.common.DeviceManagementConstants;
|
|
||||||
import org.wso2.carbon.device.mgt.mobile.windows.exception.WindowsDeviceMgtPluginException;
|
|
||||||
import org.wso2.carbon.device.mgt.mobile.windows.impl.dao.impl.WindowsDeviceDAOImpl;
|
import org.wso2.carbon.device.mgt.mobile.windows.impl.dao.impl.WindowsDeviceDAOImpl;
|
||||||
import org.wso2.carbon.device.mgt.mobile.windows.impl.dao.impl.WindowsFeatureDAOImpl;
|
import org.wso2.carbon.device.mgt.mobile.windows.impl.dao.impl.WindowsFeatureDAOImpl;
|
||||||
|
|
||||||
@ -77,6 +75,15 @@ public class WindowsDAOFactory extends AbstractMobileDeviceManagementDAOFactory
|
|||||||
if (currentConnection.get() == null) {
|
if (currentConnection.get() == null) {
|
||||||
Connection conn;
|
Connection conn;
|
||||||
try {
|
try {
|
||||||
|
if (dataSource == null) {
|
||||||
|
try {
|
||||||
|
String dataSourceName = "jdbc/MobileWindowsDM_DS";
|
||||||
|
Context ctx = new InitialContext();
|
||||||
|
dataSource = (DataSource) ctx.lookup(dataSourceName);
|
||||||
|
} catch (NamingException e) {
|
||||||
|
throw new MobileDeviceManagementDAOException("Error occurred while initializing datasource", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
conn = dataSource.getConnection();
|
conn = dataSource.getConnection();
|
||||||
currentConnection.set(conn);
|
currentConnection.set(conn);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user