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

org.molgenis.api.data.v1.Link Maven / Gradle / Ivy

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

import com.google.auto.value.AutoValue;

@AutoValue
abstract class Link {
  abstract String getHref();

  abstract String getHrefCollection();

  public static Link create(String href, String hrefCollection) {
    return new AutoValue_Link(href, hrefCollection);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy