com.yodlee.sdk.client.ApiCallbackAdapter Maven / Gradle / Ivy
/**
* 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.client;
import java.util.List;
import java.util.Map;
import com.yodlee.api.model.AbstractModelComponent;
import com.yodlee.sdk.api.exception.ApiException;
public class ApiCallbackAdapter implements ApiCallback {
@Override
public void onFailure(ApiException e, int statusCode, Map> responseHeaders) {
/**
* Adaptor Method
*/
}
@Override
public void onSuccess(T result, int statusCode, Map> responseHeaders) {
/**
* Adaptor Method
*/
}
@Override
public void onUploadProgress(long bytesWritten, long contentLength, boolean done) {
/**
* Adaptor Method
*/
}
@Override
public void onDownloadProgress(long bytesRead, long contentLength, boolean done) {
/**
* Adaptor Method
*/
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy