resolves NIHVIVO-253 re ontology change objects
This commit is contained in:
parent
6ea86f7197
commit
556836a905
1 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
package edu.cornell.mannlib.vitro.webapp.ontology.update;
|
||||
|
||||
public class AtomicOntologyChange {
|
||||
|
||||
private String sourceURI;
|
||||
private String destinationURI;
|
||||
private AtomicChangeType atomicChangeType;
|
||||
|
||||
public String getSourceURI() {
|
||||
return this.sourceURI;
|
||||
}
|
||||
|
||||
public void setSourceURI(String sourceURI) {
|
||||
this.sourceURI = sourceURI;
|
||||
}
|
||||
|
||||
public String getDestinationURI() {
|
||||
return this.destinationURI;
|
||||
}
|
||||
|
||||
public void setDestinationURI(String destinationURI) {
|
||||
this.destinationURI = destinationURI;
|
||||
}
|
||||
|
||||
public AtomicChangeType getAtomicChangeType() {
|
||||
return atomicChangeType;
|
||||
}
|
||||
|
||||
public void setAtomicChangeType(AtomicChangeType atomicChangeType) {
|
||||
this.atomicChangeType = atomicChangeType;
|
||||
}
|
||||
|
||||
public enum AtomicChangeType {
|
||||
ADD, DELETE, RENAME
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue