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

com.ecyshor.cassmig.model.BaseMigration Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
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 + '\'' +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy