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

io.mongock.runner.spring.base.events.SpringMigrationStartedEvent Maven / Gradle / Ivy

The newest version!
package io.mongock.runner.spring.base.events;

import org.springframework.context.ApplicationEvent;

public class SpringMigrationStartedEvent extends ApplicationEvent {


  /**
   * Create a new {@code ApplicationEvent}.
   *
   * @param source the object on which the event initially occurred or with
   *               which the event is associated (never {@code null})
   */
  public SpringMigrationStartedEvent(Object source) {
    super(source);
  }

  @Override
  public String toString() {
    return "SpringMigrationStartedEvent{" +
        "source=" + source +
        "} " + super.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy