io.ipinfo.api.cache.NoCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipinfo-api Show documentation
Show all versions of ipinfo-api Show documentation
Java wrapper for the IPinfo API
package io.ipinfo.api.cache;
public class NoCache implements Cache {
@Override
public Object get(String key) {
return null;
}
@Override
public boolean set(String key, Object val) {
return false;
}
@Override
public boolean clear() {
return false;
}
}