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

net.jmatrix.db.schema.action.AbstractAction Maven / Gradle / Ivy

The newest version!
package net.jmatrix.db.schema.action;

import net.jmatrix.db.schema.DBM;


/**
 * Represents an action that can be taken by the DBM schema manager.
 * 
 * Actions can include - Init, Rollback, Apply, and Reapply(rollback + apply)
 */
public abstract class AbstractAction implements Action {
   protected DBM dbm=null;
   
   public AbstractAction(DBM dbm) {
      this.dbm=dbm;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy