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
@ -51,7 +51,8 @@ public class WindowsTokenServiceImpl implements WindowsTokenService {
|
||||
return cacheEntry;
|
||||
}
|
||||
|
||||
@Override public MobileCacheEntry getCacheTokenFromDeviceId(String deviceId)
|
||||
@Override
|
||||
public MobileCacheEntry getCacheTokenFromDeviceId(String deviceId)
|
||||
throws MobileDeviceManagementDAOException {
|
||||
MobileCacheEntry cacheEntry = null;
|
||||
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.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.WindowsFeatureDAOImpl;
|
||||
|
||||
@ -77,6 +75,15 @@ public class WindowsDAOFactory extends AbstractMobileDeviceManagementDAOFactory
|
||||
if (currentConnection.get() == null) {
|
||||
Connection conn;
|
||||
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();
|
||||
currentConnection.set(conn);
|
||||
} catch (SQLException e) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user