dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/collection/plugin/base/BaseRecordInfo.java

43 lines
963 B
Java

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