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

com.yodlee.sdk.api.validators.VerifyAccountValidator Maven / Gradle / Ivy

There is a newer version: 1.0.29.beta1
Show newest version
/**
 * Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
 *
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
package com.yodlee.sdk.api.validators;

import java.util.List;
import com.yodlee.api.model.validator.Problem;
import com.yodlee.api.model.verifyaccount.request.VerifyAccountRequest;
import com.yodlee.sdk.api.VerifyAccountApi;
import com.yodlee.sdk.api.exception.ApiException;

public class VerifyAccountValidator {

	private VerifyAccountValidator() {}

	public static void validatePostVerifyAccount(VerifyAccountApi verifyAccountApi, String methodName,
			long providerAccountId, VerifyAccountRequest verificationParam) throws ApiException {
		Class[] argTypes = new Class[] {long.class, VerifyAccountRequest.class};
		Object[] argValues = new Object[] {providerAccountId, verificationParam};
		List methodProblems = ApiValidator.validate(verifyAccountApi, methodName, argTypes, argValues);
		List contextProblems = ApiValidator.validateUserContext(verifyAccountApi);
		ApiValidator.collectProblems(methodProblems, contextProblems);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy