mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master'
This commit is contained in:
commit
907043fd91
@ -62,17 +62,18 @@ public class APIApplicationManagerExtensionDataHolder {
|
||||
|
||||
public void setRealmService(RealmService realmService) {
|
||||
this.realmService = realmService;
|
||||
this.setTenantManager(realmService);
|
||||
setTenantManager(realmService != null ?
|
||||
realmService.getTenantManager() : null);
|
||||
}
|
||||
|
||||
private void setTenantManager(RealmService realmService) {
|
||||
if (realmService == null) {
|
||||
throw new IllegalStateException("Realm service is not initialized properly");
|
||||
}
|
||||
this.tenantManager = realmService.getTenantManager();
|
||||
private void setTenantManager(TenantManager tenantManager) {
|
||||
this.tenantManager = tenantManager;
|
||||
}
|
||||
|
||||
public TenantManager getTenantManager() {
|
||||
if (tenantManager == null) {
|
||||
throw new IllegalStateException("Tenant manager is not initialized properly");
|
||||
}
|
||||
return tenantManager;
|
||||
}
|
||||
|
||||
|
||||
@ -75,17 +75,18 @@ public class APIPublisherDataHolder {
|
||||
|
||||
public void setRealmService(RealmService realmService) {
|
||||
this.realmService = realmService;
|
||||
this.setTenantManager(realmService);
|
||||
setTenantManager(realmService != null ?
|
||||
realmService.getTenantManager() : null);
|
||||
}
|
||||
|
||||
private void setTenantManager(RealmService realmService) {
|
||||
if (realmService == null) {
|
||||
throw new IllegalStateException("Realm service is not initialized properly");
|
||||
}
|
||||
this.tenantManager = realmService.getTenantManager();
|
||||
private void setTenantManager(TenantManager tenantManager) {
|
||||
this.tenantManager = tenantManager;
|
||||
}
|
||||
|
||||
public TenantManager getTenantManager() {
|
||||
if (tenantManager == null) {
|
||||
throw new IllegalStateException("Tenant manager is not initialized properly");
|
||||
}
|
||||
return tenantManager;
|
||||
}
|
||||
|
||||
|
||||
@ -480,6 +480,7 @@ public class OperationManagerImpl implements OperationManager {
|
||||
int failAttempts = 0;
|
||||
while (true) {
|
||||
try {
|
||||
OperationManagementDAOFactory.beginTransaction();
|
||||
operationMappingDAO.updateOperationMapping(operation.getId(), device.getEnrolmentInfo().getId(),
|
||||
io.entgra.device.mgt.core.device.mgt.core.dto.operation.mgt.Operation.PushNotificationStatus.SCHEDULED);
|
||||
OperationManagementDAOFactory.commitTransaction();
|
||||
@ -502,6 +503,11 @@ public class OperationManagerImpl implements OperationManager {
|
||||
} catch (InterruptedException ignore) {
|
||||
break;
|
||||
}
|
||||
} catch (TransactionManagementException ex) {
|
||||
log.error("Error occurred while initiating the transaction", ex);
|
||||
break;
|
||||
} finally {
|
||||
OperationManagementDAOFactory.closeConnection();
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
|
||||
@ -74,17 +74,18 @@ public class JWTClientExtensionDataHolder {
|
||||
|
||||
public void setRealmService(RealmService realmService) {
|
||||
this.realmService = realmService;
|
||||
this.setTenantManager(realmService);
|
||||
setTenantManager(realmService != null ?
|
||||
realmService.getTenantManager() : null);
|
||||
}
|
||||
|
||||
private void setTenantManager(RealmService realmService) {
|
||||
if (realmService == null) {
|
||||
throw new IllegalStateException("Realm service is not initialized properly");
|
||||
}
|
||||
this.tenantManager = realmService.getTenantManager();
|
||||
private void setTenantManager(TenantManager tenantManager) {
|
||||
this.tenantManager = tenantManager;
|
||||
}
|
||||
|
||||
public TenantManager getTenantManager() {
|
||||
if (tenantManager == null) {
|
||||
throw new IllegalStateException("Tenant manager is not initialized properly");
|
||||
}
|
||||
return tenantManager;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user