fixing issues with notification status not getting updated

revert-70aa11f8
Ace 6 years ago
parent deeeb2ce48
commit de9cf67977

@ -99,11 +99,17 @@ public class ProfileOperationDAOImpl extends GenericOperationDAOImpl {
if (rs.next()) {
byte[] operationDetails = rs.getBytes("OPERATION_DETAILS");
int oppId = rs.getInt("OPERATION_ID");
bais = new ByteArrayInputStream(operationDetails);
ois = new ObjectInputStream(bais);
Object obj = ois.readObject();
if(obj instanceof String){
Operation opp = super.getOperation(oppId);
profileOperation = new ProfileOperation();
profileOperation.setCode(opp.getCode());
profileOperation.setId(oppId);
profileOperation.setCreatedTimeStamp(opp.getCreatedTimeStamp());
profileOperation.setId(oppId);
profileOperation.setPayLoad(obj);
} else {
profileOperation = (ProfileOperation) obj;
@ -150,12 +156,17 @@ public class ProfileOperationDAOImpl extends GenericOperationDAOImpl {
rs = stmt.executeQuery();
while (rs.next()) {
int oppId = rs.getInt("OPERATION_ID");
byte[] operationDetails = rs.getBytes("OPERATION_DETAILS");
bais = new ByteArrayInputStream(operationDetails);
ois = new ObjectInputStream(bais);
Object obj = ois.readObject();
if(obj instanceof String){
Operation opp = super.getOperation(oppId);
profileOperation = new ProfileOperation();
profileOperation.setCode(opp.getCode());
profileOperation.setId(oppId);
profileOperation.setCreatedTimeStamp(opp.getCreatedTimeStamp());
profileOperation.setPayLoad(obj);
profileOperation.setStatus(status);
operationList.add(profileOperation);

Loading…
Cancel
Save