com.yodlee.sdk.context.Context 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.context;
import com.yodlee.sdk.client.ApiClient;
import com.yodlee.sdk.configuration.AbstractConfiguration;
import java.io.Serializable;
import java.util.Map;
public interface Context extends Serializable {
public ContextType getContextType();
public ApiClient getApiClient(Map requestHeaderMap);
public C getConfiguration();
public boolean isAutoRenew();
public void setAutoRenew(boolean autoRenew);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy