NIHVIVO-264
This commit is contained in:
parent
456e0fdc2a
commit
9779f76d68
1 changed files with 21 additions and 0 deletions
|
@ -2,12 +2,33 @@
|
|||
|
||||
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 {
|
||||
|
||||
private String sourceURI;
|
||||
private String destinationURI;
|
||||
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() {
|
||||
return this.sourceURI;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue