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

com.agimatec.dbmigrate.action.MigrateAction Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
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