fr.insee.vtl.prov.utils.ProvenanceUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtl-prov Show documentation
Show all versions of vtl-prov Show documentation
Provenance static analysis
package fr.insee.vtl.prov.utils;
import java.util.Map;
import java.util.UUID;
public class ProvenanceUtils {
public static String getOrBuildUUID(Map availableUUID, String label) {
if (null != availableUUID.get(label)) {
return availableUUID.get(label);
}
return UUID.randomUUID().toString();
}
//public static List