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

eu.xenit.apix.versionhistory.VersionHistory Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
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