NIHVIVO-264

This commit is contained in:
sjm222 2010-04-01 14:13:10 +00:00
parent 456e0fdc2a
commit 9779f76d68

View file

@ -2,12 +2,33 @@
package edu.cornell.mannlib.vitro.webapp.ontology.update; package edu.cornell.mannlib.vitro.webapp.ontology.update;
import com.hp.hpl.jena.ontology.OntModel;
/**
*
* We need to document what is in source and destinationURI for each
* change type.
*
*/
public class AtomicOntologyChange { public class AtomicOntologyChange {
private String sourceURI; private String sourceURI;
private String destinationURI; private String destinationURI;
private AtomicChangeType atomicChangeType; private AtomicChangeType atomicChangeType;
public AtomicOntologyChange() {
}
public AtomicOntologyChange(String sourceURI,
String destinationURI,
AtomicChangeType atomicChangeType) {
this.sourceURI = sourceURI;
this.destinationURI = destinationURI;
this.atomicChangeType = atomicChangeType;
}
public String getSourceURI() { public String getSourceURI() {
return this.sourceURI; return this.sourceURI;
} }