All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brihaspathee.zeus.validator.rules.interfaces.AccountRule Maven / Gradle / Ivy

package com.brihaspathee.zeus.validator.rules.interfaces;

import com.brihaspathee.zeus.dto.account.AccountDto;
import com.brihaspathee.zeus.dto.rules.RuleDto;
import com.brihaspathee.zeus.validator.AccountValidationResult;

/**
 * Created in Intellij IDEA
 * User: Balaji Varadharajan
 * Date: 04, October 2022
 * Time: 6:17 AM
 * Project: Zeus
 * Package Name: com.brihaspathee.zeus.validator.interfaces
 * To change this template use File | Settings | File and Code Template
 */
public interface AccountRule {

    /**
     * Execute the rule
     * @param accountValidationResult
     * @param accountDto
     * @param rule
     */
    void execute(AccountValidationResult accountValidationResult,
                 AccountDto accountDto,
                 RuleDto rule);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy