eu.xenit.apix.versionhistory.VersionHistory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.versionhistory;
import eu.xenit.apix.data.NodeRef;
import eu.xenit.apix.data.QName;
import eu.xenit.apix.node.NodeAssociation;
import java.util.List;
/**
* Datastructure that represents a list of versions.
*/
public class VersionHistory {
private List versionHistory;
public VersionHistory() {
}
public VersionHistory(List versionHistory) {
this.versionHistory = versionHistory;
}
public List getVersionHistory() {
return versionHistory;
}
public void setVersionHistory(List versionHistory) {
this.versionHistory = versionHistory;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy