use of nl.knaw.huygens.timbuctoo.core.dto.rdf.RdfProperty in project timbuctoo by HuygensING.
the class PropertyTripleProcessor method processRetraction.
@Override
protected void processRetraction(String vreName, String subject, String predicate, String lexicalValue, String typeUri) {
RdfProperty property = new RdfProperty(predicate, lexicalValue, typeUri);
rdfImportSession.retractProperty(subject, property);
}
Aggregations