jp.co.yahoo.adssearchapi.v12.oauth2.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-search-api-lib Show documentation
Show all versions of ads-search-api-lib Show documentation
Yahoo! JAPAN Ads Search Ads API library for Java
// DO NOT EDIT THIS FILE, THIS FILE IS AUTO GENERATED!
package jp.co.yahoo.adssearchapi.v12.oauth2;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
public class Cache {
private static final Cache instance = new Cache();
private final ConcurrentMap cacheMap;
private Cache() {
this.cacheMap = new ConcurrentHashMap<>();
}
// Singleton
public static Cache getInstance() {
return instance;
}
public OAuth2AccessTokenResponse get(String key) {
return this.cacheMap.get(key);
}
public void put(String key, OAuth2AccessTokenResponse value) {
this.cacheMap.put(key, value);
}
}