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

com.brihaspathee.zeus.validator.interfaces.AccountValidator Maven / Gradle / Ivy

package com.brihaspathee.zeus.validator.interfaces;

import com.brihaspathee.zeus.domain.entity.PayloadTracker;
import com.brihaspathee.zeus.dto.account.AccountDto;
import com.brihaspathee.zeus.validator.AccountValidationResult;
import com.brihaspathee.zeus.validator.ValidationResponse;
import reactor.core.publisher.Mono;

/**
 * Created in Intellij IDEA
 * User: Balaji Varadharajan
 * Date: 26, September 2022
 * Time: 9:16 AM
 * Project: Zeus
 * Package Name: com.brihaspathee.zeus.validator.interfaces
 * To change this template use File | Settings | File and Code Template
 */
public interface AccountValidator {

    /**
     * Validate the account and return the result
     * @param accountDto
     * @return
     */
    Mono> validateAccount(PayloadTracker payloadTracker, AccountDto accountDto);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy