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

org.molgenis.data.rest.v2.ResourcesResponseV2 Maven / Gradle / Ivy

There is a newer version: 7.4.9
Show newest version
package org.molgenis.data.rest.v2;

import javax.validation.constraints.NotNull;

import org.molgenis.gson.AutoGson;

import com.google.auto.value.AutoValue;

@AutoValue
@AutoGson(autoValueClass = AutoValue_ResourcesResponseV2.class)
public abstract class ResourcesResponseV2
{
	@NotNull
	public abstract String getHref();

	public static ResourcesResponseV2 create(String href)
	{
		return new AutoValue_ResourcesResponseV2(href);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy