be.ugent.rml.metadata.Metadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmlmapper Show documentation
Show all versions of rmlmapper Show documentation
The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.
The newest version!
package be.ugent.rml.metadata;
import be.ugent.rml.term.Term;
/**
* Holds the source triplesMap and Subject-, Object- or PredicateMap for a specific (provenanced) term.
*/
public class Metadata {
private Term triplesMap;
private Term sourceMap;
public Metadata() {
}
public Metadata(Term triplesMap) {
this(triplesMap, null);
}
public Metadata(Term triplesMap, Term sourceMap) {
this.triplesMap = triplesMap;
this.sourceMap = sourceMap;
}
Term getTriplesMap() {
return triplesMap;
}
Term getSourceMap() {
return sourceMap;
}
public void setSourceMap(Term sourceMap) {
this.sourceMap = sourceMap;
}
}