com.agimatec.dbmigrate.action.MigrateAction Maven / Gradle / Ivy
package com.agimatec.dbmigrate.action;
import com.agimatec.dbmigrate.AutoMigrationTool;
/**
* Description:
* User: roman.stumm
* Date: 01.12.2008
* Time: 10:26:08
* Copyright: Agimatec GmbH
*/
public abstract class MigrateAction {
protected final AutoMigrationTool tool;
public MigrateAction(AutoMigrationTool tool) {
this.tool = tool;
}
public AutoMigrationTool getTool() {
return tool;
}
public abstract void doIt() throws Exception;
public String getInfo() {
return toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy