All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vivoweb.reasoner.plugin.DCCreatorForDocuments Maven / Gradle / Ivy

The newest version!
/* $This file is distributed under the terms of the license in LICENSE$ */

package org.vivoweb.reasoner.plugin;

import edu.cornell.mannlib.vitro.webapp.reasoner.ReasonerPlugin;
import edu.cornell.mannlib.vitro.webapp.reasoner.plugin.SimpleBridgingRule;

public class DCCreatorForDocuments extends SimpleBridgingRule implements ReasonerPlugin {

	private final static String DCTERMS = "http://purl.org/dc/terms/";
	private final static String VIVOCORE = "http://vivoweb.org/ontology/core#";

	public DCCreatorForDocuments() {
		super(VIVOCORE + "informationResourceInAuthorship",
			  VIVOCORE + "linkedAuthor",
			  DCTERMS + "creator");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy