After Authorization Routine Structure

Last updated: 2023-11-07

This code snippet only describes the structure of the method used for After Authorization Routine

package com.temenos.t24;

import java.util.List;

import com.temenos.api.TStructure;
import com.temenos.t24.api.complex.eb.servicehook.TransactionData;
import com.temenos.t24.api.complex.eb.templatehook.TransactionContext;
import com.temenos.t24.api.hook.system.RecordLifecycle;

/**
 * TODO: This routine describes the structure to the hook used for PostAuth Routine!
 * RecordLifeCycle needs to be inherited for Version Level Routines
 *
 * @author Danish The Techie
 *
 */
public class AfterAuthRoutineStructure extends RecordLifecycle{
    
    
    @Override
    public void postUpdateRequest(String application, String currentRecordId, TStructure currentRecord,
            List<TransactionData> transactionData, List<TStructure> currentRecords,
            TransactionContext transactionContext) {
            //your code
        
    }

}