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

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

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

import java.util.ArrayList;
import java.util.List;

public class EntityCollectionBatchCreateResponseBodyV2
{
	/**
	 * The location is not added to location response header because it can become too large. The Location will contains
	 * a href to the collection that is created.
	 */
	private String location = "";

	private final List resources = new ArrayList();

	public List getResources()
	{
		return resources;
	}

	public String getLocation()
	{
		return location;
	}

	public void setLocation(String location)
	{
		this.location = location;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy