br.com.moip.resource.Links Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.resource;
import java.util.HashMap;
import java.util.Map;
public class Links {
private final Map links = new HashMap<>();
public Links add(final String key, final Object link) {
links.put(key, link);
return this;
}
public Map getLinks() {
return links;
}
}