de.samply.directory_sync.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of directory-sync Show documentation
Show all versions of directory-sync Show documentation
Syncs Information between the BBMRI-ERIC Biobank Directory and the local bridgehead
package de.samply.directory_sync;
import java.util.HashMap;
import java.util.Map;
public class Util {
public static Map mapOf() {
return new HashMap<>();
}
public static Map mapOf(K key, V value) {
HashMap map = new HashMap<>();
map.put(key, value);
return map;
}
}