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

org.openl.rules.project.model.ObjectVersionConverter Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.project.model;

/**
 * Converter from old version of object to current version and vice-versa
 *
 * @param  Current version type
 * @param  Old version type
 */
public interface ObjectVersionConverter {
    C fromOldVersion(O oldVersion);

    O toOldVersion(C currentVersion);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy