Package org.apache.ibatis.migration.commands

Examples of org.apache.ibatis.migration.commands.PendingCommand


      } else if (UP.equals(command)) {
        new UpCommand(repository, environment, force).execute(params);
      } else if (VERSION.equals(command)) {
        new VersionCommand(repository, environment, force).execute(params);
      } else if (PENDING.equals(command)) {
        new PendingCommand(repository, environment, force).execute(params);
      } else if (DOWN.equals(command)) {
        new DownCommand(repository, environment, force).execute(params);
      } else if (SCRIPT.equals(command)) {
        new ScriptCommand(repository, environment, force).execute(params);
      } else {
View Full Code Here

TOP

Related Classes of org.apache.ibatis.migration.commands.PendingCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.