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

org.molgenis.semanticmapper.data.request.GetOntologyTermRequest Maven / Gradle / Ivy

package org.molgenis.semanticmapper.data.request;

import com.google.auto.value.AutoValue;
import java.util.List;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import org.molgenis.util.AutoGson;

@AutoValue
@AutoGson(autoValueClass = AutoValue_GetOntologyTermRequest.class)
@SuppressWarnings(
    "squid:S1610") // Abstract classes without fields should be converted to interfaces
public abstract class GetOntologyTermRequest {
  @NotBlank
  public abstract String getSearchTerm();

  @NotEmpty
  public abstract List getOntologyIds();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy