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

org.molgenis.data.event.BootstrappingEvent Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data.event;

public class BootstrappingEvent {
  public enum BootstrappingStatus {
    STARTED,
    FINISHED;
  }

  private final BootstrappingStatus status;

  public BootstrappingEvent(BootstrappingStatus status) {
    this.status = status;
  }

  public BootstrappingStatus getStatus() {
    return this.status;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy