org.openprovenance.prov.template.json.Descriptors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-template Show documentation
Show all versions of prov-template Show documentation
A template system for PROV bundles.
The newest version!
package org.openprovenance.prov.template.json;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.openprovenance.prov.template.json.deserializer.DescriptorsDeserializer;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
@JsonDeserialize(using = DescriptorsDeserializer.class)
public class Descriptors {
@JsonValue
public List values;
@Override
public String toString() {
return "Descriptors{" +
"values=" + values +
'}';
}
public List