Interface UpdateStep

All Superinterfaces:
UpdateStepTarget

@ExtensionPoint public interface UpdateStep extends UpdateStepTarget
This is the main interface for "global" data migration/update. Using this interface, SCM-Manager provides the possibility to change data structures between versions for a given type of data. This class should be used only for global data, that is not repository specific (eg. the store is created without a call of forRepository in a store factory. To migrate repository specific data, use a RepositoryUpdateStep.

For information about UpdateStepTarget.getAffectedDataType() and UpdateStepTarget.getTargetVersion(), see the package documentation.

See Also:
  • Method Details

    • doUpdate

      void doUpdate() throws Exception
      Implement this to update the data to the new version. If any Exception is thrown, SCM-Manager will not start up.
      Throws:
      Exception