LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
global class ProvisioningBatchable {
    global ProvisioningBatchable(List<SObject> newRows) { }
    global Object clone() { }
    global void execute(Database.BatchableContext BC, List<UserProvisioningRequest> scope) { }
    global void finish(Database.BatchableContext BC) { }
    global Map<String,Object> flowInputPreprocessing(Map<String,Object> myMap) { }
    global void flowPostProcessing(UserProvisioning.ProvisioningProcessHandlerOutput provOutput, SObject thisUPR) { }
    global String getEventPrefix() { }
    global String getFlowName() { }
    global String getFlowNamespace() { }
    global List<SObject> getPerBatchUPL() { }
    global List<UserProvisioningRequest> getPerBatchUPR() { }
    global Map<Id,SObject> getUprToNewUplMap() { }
    global Boolean hasFlow() { }
    global Boolean hasFlowOrApex() { }
    global void postBatchProcessing() { }
    global Database.QueryLocator start(Database.BatchableContext BC) { }
 
}