add rollback

temp-changes
Thilina Sandaruwan 1 year ago
parent 3722bfc761
commit 647d4fdb78

@ -167,6 +167,7 @@ public class GroupManagementProviderServiceImpl implements GroupManagementProvid
} else { } else {
DeviceGroup immediateParentGroup = groupDAO.getGroup(groups.getParentGroupId(), tenantId); DeviceGroup immediateParentGroup = groupDAO.getGroup(groups.getParentGroupId(), tenantId);
if (immediateParentGroup == null) { if (immediateParentGroup == null) {
GroupManagementDAOFactory.rollbackTransaction();
String msg = "Parent group with group ID '" + groups.getParentGroupId() + "' does not exist. Hence creating of group '" + groups.getName() + "' was not success"; String msg = "Parent group with group ID '" + groups.getParentGroupId() + "' does not exist. Hence creating of group '" + groups.getName() + "' was not success";
log.error(msg); log.error(msg);
throw new GroupManagementException(msg); throw new GroupManagementException(msg);
@ -182,7 +183,7 @@ public class GroupManagementProviderServiceImpl implements GroupManagementProvid
} else { } else {
throw new GroupManagementException("Group exist with name " + groups.getName()); throw new GroupManagementException("Group exist with name " + groups.getName());
} }
} catch (GroupManagementDAOException | GroupManagementException e) { } catch (GroupManagementDAOException e) {
GroupManagementDAOFactory.rollbackTransaction(); GroupManagementDAOFactory.rollbackTransaction();
String msg = e.getMessage(); String msg = e.getMessage();
log.error(msg, e); log.error(msg, e);

Loading…
Cancel
Save