mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Improve mail sending logic
This commit is contained in:
parent
4fdfc07e64
commit
f32e76346f
@ -4220,6 +4220,11 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
log.debug("Triggering Corrective action. Device Identifier: " + deviceIdentifier);
|
||||
}
|
||||
|
||||
if (StringUtils.isBlank(featureCode)){
|
||||
String msg = "Found a Blan feature code: " + featureCode;
|
||||
log.error(msg);
|
||||
throw new BadRequestException(msg);
|
||||
}
|
||||
if (configList == null || configList.isEmpty()) {
|
||||
String msg = "Platform config is not configured";
|
||||
log.error(msg);
|
||||
@ -4236,7 +4241,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
|
||||
for (String action : actions) {
|
||||
for (ConfigurationEntry config : configList) {
|
||||
if (config.getName().equals(featureCode)) {
|
||||
if (featureCode.equals(config.getName())) {
|
||||
CorrectiveActionConfig correctiveActionConfig = (CorrectiveActionConfig) config.getValue();
|
||||
if (correctiveActionConfig.getActionTypes().contains(action)) {
|
||||
if (DeviceManagementConstants.CorrectiveActions.E_MAIL.equals(action)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user