
com.mangopay.core.interfaces.StorageStrategy Maven / Gradle / Ivy
package com.mangopay.core.interfaces;
import com.mangopay.core.OAuthToken;
/**
* Storage strategy interface.
*/
public interface StorageStrategy {
OAuthToken get(String envKey);
void store(OAuthToken token, String envKey);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy