com.ecyshor.cassmig.model.BaseMigration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-migration Show documentation
Show all versions of cassandra-migration Show documentation
Java schema migration library for Cassandra
package com.ecyshor.cassmig.model;
public abstract class BaseMigration {
protected String schema;
protected String md5Sum;
protected int order;
protected String description;
public String getMd5Sum() {
return md5Sum;
}
public int getOrder() {
return order;
}
public String getSchema() {
return schema;
}
public String getDescription() {
return description;
}
@Override public String toString() {
return "BaseMigration{" +
"schema='" + schema + '\'' +
", md5Sum='" + md5Sum + '\'' +
", order=" + order +
", description='" + description + '\'' +
'}';
}
}