be.ugent.rml.Mapping 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;
import java.util.List;
public class Mapping {
private MappingInfo subjectMappingInfo;
private List predicateObjectGraphMappings;
private List graphMappingInfos;
public Mapping(MappingInfo subjectMappingInfo, List predicateObjectGraphMappings, List graphMappingInfos) {
this.subjectMappingInfo = subjectMappingInfo;
this.predicateObjectGraphMappings = predicateObjectGraphMappings;
this.graphMappingInfos = graphMappingInfos;
}
public MappingInfo getSubjectMappingInfo() {
return subjectMappingInfo;
}
public List getPredicateObjectGraphMappings() {
return predicateObjectGraphMappings;
}
public List getGraphMappingInfos() {
return graphMappingInfos;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy