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

com.mangopay.core.interfaces.StorageStrategy Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
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