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

org.molgenis.api.model.response.AppVersionResponse Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.api.model.response;

import com.google.auto.value.AutoValue;
import java.time.Instant;
import org.molgenis.util.AutoGson;

@AutoValue
@AutoGson(autoValueClass = AutoValue_AppVersionResponse.class)
@SuppressWarnings("java:S1610")
public abstract class AppVersionResponse {
  public abstract String getVersion();

  public abstract Instant getBuildDate();

  public static AppVersionResponse create(String version, Instant date) {
    return new AutoValue_AppVersionResponse(version, date);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy