Hot Field Routine Structure and Method

Last updated: 2023-11-07

This code snippet only describes the structure of the methosd used for hot field validation

package com.temenos.t24;

import com.temenos.api.TStructure;
import com.temenos.t24.api.complex.eb.templatehook.InputValue;
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 hot fields!
 * RecordLifeCycle needs to be inherited for Version Level Routines
 *
 * @author Danish The Techie
 *
 */
public class HotFieldRoutineStructure extends RecordLifecycle{
    
    @Override
    public void defaultFieldValuesOnHotField(String application, String currentRecordId, TStructure currentRecord,
            InputValue currentInputValue, TStructure unauthorisedRecord, TStructure liveRecord,
            TransactionContext transactionContext) {
        
            //Your code
    }

}