package eu.dnetlib.dhp.collection.plugin.base; import java.io.Serializable; import java.util.ArrayList; import java.util.List; public class BaseRecordInfo implements Serializable { private static final long serialVersionUID = -8848232018350074593L; private String id; private List collections = new ArrayList<>(); private List paths = new ArrayList<>(); private List types = new ArrayList<>(); public String getId() { return this.id; } public void setId(final String id) { this.id = id; } public List getPaths() { return this.paths; } public void setPaths(final List paths) { this.paths = paths; } public List getTypes() { return this.types; } public void setTypes(final List types) { this.types = types; } public List getCollections() { return this.collections; } public void setCollections(final List collections) { this.collections = collections; } }