com.rinoto.migramongo.MigrationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of migramongo-core Show documentation
Show all versions of migramongo-core Show documentation
Tool for migrating mongodb scripts
package com.rinoto.migramongo;
import com.rinoto.migramongo.MigrationEntry.MigrationType;
public class MigrationInfo {
private final String fromVersion;
private final String toVersion;
private String module;
private String info;
public MigrationInfo(String fromVersion, String toVersion) {
this.fromVersion = fromVersion;
this.toVersion = toVersion;
}
public String getFromVersion() {
return fromVersion;
}
public String getToVersion() {
return toVersion;
}
public String getModule() {
return module;
}
public String getInfo() {
return info;
}
public MigrationType getMigrationType() {
return MigrationType.UPGRADE;
}
}