Class InitCopyCommandStep

All Implemented Interfaces:
CommandStep

public class InitCopyCommandStep extends AbstractHelperCommandStep
  • Field Details

  • Constructor Details

    • InitCopyCommandStep

      public InitCopyCommandStep()
  • Method Details

    • run

      public final void run(CommandResultsBuilder resultsBuilder) throws Exception
      Description copied from interface: CommandStep
      Performs the business logic. This method should not be called directly. It is called by the overall pipeline logic in the CommandScope.execute() order.
      Throws:
      Exception
    • defineCommandNames

      public String[][] defineCommandNames()
      Description copied from interface: CommandStep
      Defines new command names For example, if it is part of `liquibase update`, this should return new String[][]{ new String[] {"update"}}. If it is a part of `liquibase example init`, this should return {"example", "init"}.

      This is used to determine the available command names.

      This can return null if this step is not defining a new command but "cross-cutting" existing commands

    • adjustCommandDefinition

      public void adjustCommandDefinition(CommandDefinition commandDefinition)
      Description copied from class: AbstractCommandStep
      Default implementation makes no changes
      Specified by:
      adjustCommandDefinition in interface CommandStep
      Overrides:
      adjustCommandDefinition in class AbstractHelperCommandStep
    • determineProjectCopier

      public static ProjectCopier determineProjectCopier(CommandScope commandScope, String targetDir)
    • isInternal

      public boolean isInternal()
      Description copied from interface: CommandStep
      Informational method to determine if this step is internal to Liquibase and should not be disclosed to end users
      Specified by:
      isInternal in interface CommandStep
      Overrides:
      isInternal in class AbstractHelperCommandStep
      Returns:
      true if this step is internal to Liquibase and should not be shown in the help output