Testare Interfata.docx

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Testare Interfata.docx as PDF for free.

More details

  • Words: 110
  • Pages: 1
TESTARE INTERFATA private void handleBeforeInsert(List<sObject> newList) { SGA_CaseManagement.updateValues(newList, null); } private void handleBeforeUpdate(List<sObject> newList, Map oldMap) { SGA_CaseManagement.updateValues(newList, (Map) oldMap); SGA_CaseManagement.validateCaseClosureWithChildCases(newList, (Map) oldMap); SGA_CaseManagement.validateCaseClosureWithFslWorkOrders(newList, (Map) oldMap); SGA_CaseManagement.updateValuesFromCaseLine(newList, (Map) oldMap); SGA_CaseManagement.reassignCaseOwner(newList, (Map) oldMap); } private void handleBeforeDelete(List<sObject> deleteList) {} private void handleAfterInsert(List<sObject> newList) { SGA_CaseManagement.launchPrintJobs(newList, null); SGA_CaseManagement.caseUpdateCOWorkAlertTriggerHandler(newList, null); SGA_CaseManagement.updateRelatedAccounts(newList, null); SGA_TaskManagement.createInteractionsForCases(newList, null); SGA_CaseManagement.runAssignmentRules(newList, null); } private void handleAfterUpdate(List<sObject> newList, Map oldMap) { SGA_CaseManagement.fslSyncCaseToWorkOrders(newList, (Map) oldMap); SGA_CaseManagement.launchPrintJobs(newList, (Map) oldMap); SGA_CaseManagement.caseUpdateCOWorkAlertTriggerHandler(newList, (Map) oldmap); SGA_CaseManagement.updateRelatedAccounts(newList, (Map) oldMap); SGA_TaskManagement.createInteractionsForCases(newList, (Map) oldMap); SGA_CaseManagement.recalcCkswWorkOrders(newList, (Map) oldMap); SGA_CaseManagement.runAssignmentRules(newList, (Map) oldMap); } private void handleAfterDelete(List<sObject> deletedList) { SGA_CaseManagement.caseUpdateCOWorkAlertTriggerHandler(deletedList, null); } private void handleAfterUndelete(List<sObject> unDeletedList) {}

Related Documents